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
17    <uses-permission android:name="android.permission.POST_NOTIFICATIONS" />
18    <application
19        android:allowBackup="true"
20        android:label="@string/app_name"
21        android:supportsRtl="true"
22        android:theme="@style/AppTheme"
23        android:enableOnBackInvokedCallback="true"
24        tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">
25        <activity android:name=".NavigationActivity" android:exported="true">
26            <intent-filter>
27                <action android:name="android.intent.action.MAIN"/>
28                <category android:name="android.intent.category.DEFAULT"/>
29                <category android:name="android.intent.category.LAUNCHER" />
30            </intent-filter>
31            <nav-graph android:value="@navigation/nav_main"/>
32        </activity>
33        <activity
34            android:name=".HelpActivity"
35            android:label="@string/help" android:exported="true"/>
36
37        <receiver android:name=".DeepLinkAppWidgetProvider" android:exported="true">
38            <intent-filter>
39                <action android:name="android.appwidget.action.APPWIDGET_UPDATE" />
40            </intent-filter>
41            <meta-data android:name="android.appwidget.provider"
42                android:resource="@xml/deep_link_appwidget_info" />
43        </receiver>
44    </application>
45
46</manifest>
47