• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
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<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19     package="com.android.car.themeplayground">
20    <uses-sdk android:minSdkVersion="26"
21         android:targetSdkVersion="26"/>
22    <uses-permission android:name="android.permission.MODIFY_DAY_NIGHT_MODE"/>
23    <application android:allowBackup="true"
24         android:icon="@drawable/ic_launcher"
25         android:label="@string/app_name"
26         android:supportsRtl="true"
27         android:theme="@style/Theme.App">
28        <activity android:name=".TextSamples"
29             android:label="@string/app_name"
30             android:windowSoftInputMode="stateUnchanged"
31             android:resizeableActivity="true"
32             android:allowEmbedded="true"
33             android:exported="true">
34            <intent-filter>
35                <action android:name="android.intent.action.MAIN"/>
36                <category android:name="android.intent.category.LAUNCHER"/>
37            </intent-filter>
38        </activity>
39        <activity android:name=".ButtonSamples"
40                  android:label="@string/button_elements"
41                  android:windowSoftInputMode="stateUnchanged"
42                  android:resizeableActivity="true"
43                  android:allowEmbedded="true">
44        </activity>
45        <activity android:name=".ColorSamples"
46             android:label="@string/panel_elements"
47             android:windowSoftInputMode="stateUnchanged"
48             android:resizeableActivity="true"
49             android:allowEmbedded="true">
50        </activity>
51        <activity android:name=".ProgressBarSamples"
52                  android:label="@string/progress_bar_elements"
53                  android:windowSoftInputMode="stateUnchanged"
54                  android:resizeableActivity="true"
55                  android:allowEmbedded="true">
56        </activity>
57        <activity android:name=".DialogSamples"
58             android:label="@string/dialog_elements"
59             android:parentActivityName="com.android.car.themeplayground.TextSamples">
60        </activity>
61        <activity android:name=".WidgetsSamples"
62             android:label="@string/widgets"
63             android:parentActivityName="com.android.car.themeplayground.TextSamples">
64        </activity>
65        <activity android:name=".RecyclerViewSamples"
66             android:label="@string/recycler_view"
67             android:parentActivityName="com.android.car.themeplayground.TextSamples">
68        </activity>
69        <activity android:name=".CarUiRecyclerViewSamples"
70             android:label="@string/car_ui_recycler_view"
71             android:parentActivityName="com.android.car.themeplayground.TextSamples">
72        </activity>
73        <activity android:name=".DefaultThemeSamples"
74             android:label="@string/default_themes"
75             android:parentActivityName="com.android.car.themeplayground.TextSamples">
76        </activity>
77        <activity android:name=".MultipleIntentSamples"
78             android:label="@string/multiple_intent"
79             android:parentActivityName="com.android.car.themeplayground.TextSamples">
80        </activity>
81    </application>
82</manifest>
83