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" package="androidx.lifecycle.testapp">
15
16    <application android:allowBackup="true" android:label="Test App" android:supportsRtl="true"
17        tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">
18
19        <activity android:name="androidx.lifecycle.testapp.LifecycleTestActivity">
20            <intent-filter>
21                <action android:name="android.intent.action.MAIN" />
22                <category android:name="android.intent.category.LAUNCHER" />
23            </intent-filter>
24        </activity>
25        <activity android:name="androidx.lifecycle.testapp.CollectingSupportActivity">
26            <intent-filter>
27                <action android:name="android.intent.action.MAIN" />
28                <category android:name="android.intent.category.LAUNCHER" />
29            </intent-filter>
30        </activity>
31        <activity android:name="androidx.lifecycle.testapp.FrameworkLifecycleRegistryActivity">
32            <intent-filter>
33                <action android:name="android.intent.action.MAIN" />
34                <category android:name="android.intent.category.LAUNCHER" />
35            </intent-filter>
36        </activity>
37        <activity
38            android:name="androidx.lifecycle.testapp.SimpleAppLifecycleTestActivity">
39            <intent-filter>
40                <action android:name="android.intent.action.MAIN" />
41                <category android:name="android.intent.category.LAUNCHER" />
42            </intent-filter>
43        </activity>
44        <activity android:name="androidx.lifecycle.testapp.NavigationTestActivityFirst"
45            android:launchMode="singleTask">
46            <intent-filter>
47                <action android:name="android.intent.action.MAIN" />
48                <category android:name="android.intent.category.LAUNCHER" />
49            </intent-filter>
50        </activity>
51        <activity
52            android:name="androidx.lifecycle.testapp.EmptyActivity">
53            <intent-filter>
54                <action android:name="android.intent.action.MAIN" />
55                <category android:name="android.intent.category.LAUNCHER" />
56            </intent-filter>
57        </activity>
58        <activity android:name=".NavigationTestActivitySecond" />
59        <activity android:name=".NavigationDialogActivity"
60            android:launchMode="singleTask"
61            android:theme="@android:style/Theme.DeviceDefault.Dialog" />
62        <activity android:name=".NonSupportActivity"/>
63    </application>
64</manifest>
65