1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2016 The Android Open Source Project
3  ~ Licensed under the Apache License, Version 2.0 (the "License");
4  ~ you may not use this file except in compliance with the License.
5  ~ You may obtain a copy of the License at
6  ~      http://www.apache.org/licenses/LICENSE-2.0
7  ~ Unless required by applicable law or agreed to in writing, software
8  ~ distributed under the License is distributed on an "AS IS" BASIS,
9  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
10  ~ See the License for the specific language governing permissions and
11  ~ limitations under the License.
12  -->
13<manifest xmlns:android="http://schemas.android.com/apk/res/android"
14    xmlns:tools="http://schemas.android.com/tools">
15
16    <application
17        android:allowBackup="true"
18        android:label="Test App"
19        android:supportsRtl="true"
20        tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">
21
22        <activity
23            android:name="androidx.lifecycle.testapp.LifecycleTestActivity"
24            android:exported="true">
25            <intent-filter>
26                <action android:name="android.intent.action.MAIN" />
27                <category android:name="android.intent.category.LAUNCHER" />
28            </intent-filter>
29        </activity>
30        <activity
31            android:name="androidx.lifecycle.testapp.CollectingSupportActivity"
32            android:exported="true">
33            <intent-filter>
34                <action android:name="android.intent.action.MAIN" />
35                <category android:name="android.intent.category.LAUNCHER" />
36            </intent-filter>
37        </activity>
38        <activity
39            android:name="androidx.lifecycle.testapp.FrameworkLifecycleRegistryActivity"
40            android:exported="true">
41            <intent-filter>
42                <action android:name="android.intent.action.MAIN" />
43                <category android:name="android.intent.category.LAUNCHER" />
44            </intent-filter>
45        </activity>
46        <activity
47            android:name="androidx.lifecycle.testapp.SimpleAppLifecycleTestActivity"
48            android:exported="true">
49            <intent-filter>
50                <action android:name="android.intent.action.MAIN" />
51                <category android:name="android.intent.category.LAUNCHER" />
52            </intent-filter>
53        </activity>
54        <activity
55            android:name="androidx.lifecycle.testapp.NavigationTestActivityFirst"
56            android:exported="true"
57            android:launchMode="singleTask">
58            <intent-filter>
59                <action android:name="android.intent.action.MAIN" />
60                <category android:name="android.intent.category.LAUNCHER" />
61            </intent-filter>
62        </activity>
63        <activity
64            android:name="androidx.lifecycle.testapp.EmptyActivity"
65            android:exported="true">
66            <intent-filter>
67                <action android:name="android.intent.action.MAIN" />
68                <category android:name="android.intent.category.LAUNCHER" />
69            </intent-filter>
70        </activity>
71        <activity
72            android:name=".NavigationTestActivitySecond"
73            android:exported="false" />
74        <activity
75            android:name=".NavigationDialogActivity"
76            android:exported="false"
77            android:launchMode="singleTask"
78            android:theme="@android:style/Theme.DeviceDefault.Dialog" />
79        <activity
80            android:name=".NonSupportActivity"
81            android:exported="false" />
82    </application>
83</manifest>
84