Home | History | Annotate | Download | only in main
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3   ~ Copyright (C) 2017 The Android Open Source Project
      4   ~ Licensed under the Apache License, Version 2.0 (the "License");
      5   ~ you may not use this file except in compliance with the License.
      6   ~ You may obtain a copy of the License at
      7   ~      http://www.apache.org/licenses/LICENSE-2.0
      8   ~ Unless required by applicable law or agreed to in writing, software
      9   ~ distributed under the License is distributed on an "AS IS" BASIS,
     10   ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     11   ~ See the License for the specific language governing permissions and
     12   ~ limitations under the License.
     13   -->
     14 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     15     xmlns:tools="http://schemas.android.com/tools"
     16     package="androidx.navigation.testapp">
     17 
     18     <application
     19         android:allowBackup="true"
     20         android:label="@string/app_name"
     21         android:supportsRtl="true"
     22         android:theme="@style/AppTheme"
     23         tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">
     24         <activity android:name=".NavigationActivity">
     25             <intent-filter>
     26                 <action android:name="android.intent.action.MAIN"/>
     27                 <category android:name="android.intent.category.DEFAULT"/>
     28                 <category android:name="android.intent.category.LAUNCHER" />
     29             </intent-filter>
     30             <!-- Handle the 'More information' link on www.example.com -->
     31             <intent-filter>
     32                 <action android:name="android.intent.action.VIEW"/>
     33                 <category android:name="android.intent.category.DEFAULT"/>
     34                 <category android:name="android.intent.category.BROWSABLE"/>
     35                 <data android:scheme="https"/>
     36                 <data android:scheme="http"/>
     37                 <data android:host="www.iana.org"/>
     38                 <data android:pathPrefix="/domains/"/>
     39             </intent-filter>
     40         </activity>
     41         <activity
     42             android:name=".HelpActivity"
     43             android:label="@string/help"/>
     44 
     45         <receiver android:name=".DeepLinkAppWidgetProvider" >
     46             <intent-filter>
     47                 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
     48             </intent-filter>
     49             <meta-data android:name="android.appwidget.provider"
     50                 android:resource="@xml/deep_link_appwidget_info" />
     51         </receiver>
     52     </application>
     53 
     54 </manifest>
     55