1<?xml version="1.0" encoding="utf-8"?><!--
2  ~ Copyright (C) 2017 The Android Open Source Project
3  ~
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  ~
8  ~      http://www.apache.org/licenses/LICENSE-2.0
9  ~
10  ~ Unless required by applicable law or agreed to in writing, software
11  ~ distributed under the License is distributed on an "AS IS" BASIS,
12  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  ~ See the License for the specific language governing permissions and
14  ~ limitations under the License.
15-->
16<manifest xmlns:android="http://schemas.android.com/apk/res/android">
17
18    <application
19        android:allowBackup="true"
20        android:supportsRtl="true"
21        android:theme="@style/Theme.AppCompat">
22        <activity
23            android:name=".custom.PagedListSampleActivity"
24            android:exported="true"
25            android:label="PagedList Sample">
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
32            android:name=".v3.V3Activity"
33            android:exported="true"
34            android:label="V3">
35            <intent-filter>
36                <action android:name="android.intent.action.MAIN" />
37                <category android:name="android.intent.category.LAUNCHER" />
38            </intent-filter>
39        </activity>
40        <activity
41            android:name=".room.RoomPagedListActivity"
42            android:label="Room Live PagedList"
43            android:exported="true"
44            android:theme="@style/Theme.AppCompat">
45            <intent-filter>
46                <action android:name="android.intent.action.MAIN" />
47                <category android:name="android.intent.category.LAUNCHER" />
48            </intent-filter>
49        </activity>
50        <activity
51            android:name=".room.RoomKeyedPagedListActivity"
52            android:label="Keyed Live PagedList"
53            android:exported="true"
54            android:theme="@style/Theme.AppCompat">
55            <intent-filter>
56                <action android:name="android.intent.action.MAIN" />
57                <category android:name="android.intent.category.LAUNCHER" />
58            </intent-filter>
59        </activity>
60        <activity
61            android:name=".room.RoomPagedListRxActivity"
62            android:label="PagedList Observable"
63            android:exported="true"
64            android:theme="@style/Theme.AppCompat">
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
71            android:name=".v3room.V3RoomActivity"
72            android:exported="true"
73            android:label="V3 Room">
74            <intent-filter>
75                <action android:name="android.intent.action.MAIN" />
76                <category android:name="android.intent.category.LAUNCHER" />
77            </intent-filter>
78        </activity>
79    </application>
80</manifest>
81