1<?xml version="1.0" encoding="utf-8"?>
2<!--
3  ~ Copyright (C) 2018 The Android Open Source Project
4  ~
5  ~ Licensed under the Apache License, Version 2.0 (the "License");
6  ~ you may not use this file except in compliance with the License.
7  ~ You may obtain a copy of the License at
8  ~
9  ~      http://www.apache.org/licenses/LICENSE-2.0
10  ~
11  ~ Unless required by applicable law or agreed to in writing, software
12  ~ distributed under the License is distributed on an "AS IS" BASIS,
13  ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14  ~ See the License for the specific language governing permissions and
15  ~ limitations under the License
16  -->
17
18
19<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20          package="com.android.car.themeplayground">
21    <uses-sdk
22        android:minSdkVersion="26"
23        android:targetSdkVersion="26"/>
24    <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE" />
25    <application
26        android:allowBackup="true"
27        android:icon="@drawable/ic_launcher"
28        android:label="@string/app_name"
29        android:supportsRtl="true"
30        android:theme="@style/Theme.App">
31        <activity
32            android:name=".TextSamples"
33            android:label="@string/app_name"
34            android:windowSoftInputMode="stateUnchanged"
35            android:resizeableActivity="true"
36            android:allowEmbedded="true">
37            <intent-filter>
38                <action android:name="android.intent.action.MAIN" />
39                <category android:name="android.intent.category.LAUNCHER" />
40            </intent-filter>
41        </activity>
42        <activity
43            android:name=".ColorSamples"
44            android:label="@string/panel_elements"
45            android:windowSoftInputMode="stateUnchanged"
46            android:resizeableActivity="true"
47            android:allowEmbedded="true">
48        </activity>
49        <activity android:name=".DialogSamples"
50                  android:label="@string/dialog_elements"
51                  android:parentActivityName="com.android.car.themeplayground.TextSamples">
52        </activity>
53        <activity android:name=".WidgetsSamples"
54            android:label="@string/widgets"
55            android:parentActivityName="com.android.car.themeplayground.TextSamples">
56        </activity>
57        <activity android:name=".RecyclerViewSamples"
58                  android:label="@string/recycler_view"
59                  android:parentActivityName="com.android.car.themeplayground.TextSamples">
60        </activity>
61        <activity android:name=".CarUiRecyclerViewSamples"
62            android:label="@string/car_ui_recycler_view"
63            android:parentActivityName="com.android.car.themeplayground.TextSamples">
64        </activity>
65        <activity android:name=".DefaultThemeSamples"
66                  android:label="@string/default_themes"
67                  android:parentActivityName="com.android.car.themeplayground.TextSamples">
68        </activity>
69        <activity android:name=".MultipleIntentSamples"
70                  android:label="@string/multiple_intent"
71                  android:parentActivityName="com.android.car.themeplayground.TextSamples">
72        </activity>
73    </application>
74</manifest>