Home | History | Annotate | Download | only in main
      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="android.arch.lifecycle.testapp">
     15 
     16     <application android:allowBackup="true" android:label="Test App" android:supportsRtl="true"
     17         tools:ignore="AllowBackup,GoogleAppIndexingWarning,MissingApplicationIcon">
     18         <activity android:name="android.arch.lifecycle.testapp.MainActivity">
     19             <intent-filter>
     20                 <action android:name="android.intent.action.MAIN" />
     21                 <category android:name="android.intent.category.LAUNCHER" />
     22             </intent-filter>
     23         </activity>
     24 
     25         <activity android:name="android.arch.lifecycle.testapp.LifecycleTestActivity">
     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="android.arch.lifecycle.testapp.FullLifecycleTestActivity">
     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 android:name="android.arch.lifecycle.testapp.SupportLifecycleRegistryActivity">
     38             <intent-filter>
     39                 <action android:name="android.intent.action.MAIN" />
     40                 <category android:name="android.intent.category.LAUNCHER" />
     41             </intent-filter>
     42         </activity>
     43         <activity android:name="android.arch.lifecycle.testapp.FrameworkLifecycleRegistryActivity">
     44             <intent-filter>
     45                 <action android:name="android.intent.action.MAIN" />
     46                 <category android:name="android.intent.category.LAUNCHER" />
     47             </intent-filter>
     48         </activity>
     49         <activity
     50             android:name="android.arch.lifecycle.testapp.SimpleAppLifecycleTestActivity">
     51             <intent-filter>
     52                 <action android:name="android.intent.action.MAIN" />
     53                 <category android:name="android.intent.category.LAUNCHER" />
     54             </intent-filter>
     55         </activity>
     56         <activity android:name="android.arch.lifecycle.testapp.NavigationTestActivityFirst"
     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="android.arch.lifecycle.testapp.EmptyActivity">
     65             <intent-filter>
     66                 <action android:name="android.intent.action.MAIN" />
     67                 <category android:name="android.intent.category.LAUNCHER" />
     68             </intent-filter>
     69         </activity>
     70         <activity android:name=".NavigationTestActivitySecond" />
     71         <activity android:name=".NavigationDialogActivity"
     72             android:launchMode="singleTask"
     73             android:theme="@android:style/Theme.DeviceDefault.Dialog" />
     74     </application>
     75 </manifest>
     76