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=".ColorPalette" 52 android:label="@string/palette_elements" 53 android:windowSoftInputMode="stateUnchanged" 54 android:resizeableActivity="true" 55 android:allowEmbedded="true"> 56 </activity> 57 <activity android:name=".ProgressBarSamples" 58 android:label="@string/progress_bar_elements" 59 android:windowSoftInputMode="stateUnchanged" 60 android:resizeableActivity="true" 61 android:allowEmbedded="true"> 62 </activity> 63 <activity android:name=".DialogSamples" 64 android:label="@string/dialog_elements" 65 android:parentActivityName="com.android.car.themeplayground.TextSamples"> 66 </activity> 67 <activity android:name=".WidgetsSamples" 68 android:label="@string/widgets" 69 android:parentActivityName="com.android.car.themeplayground.TextSamples"> 70 </activity> 71 <activity android:name=".RecyclerViewSamples" 72 android:label="@string/recycler_view" 73 android:parentActivityName="com.android.car.themeplayground.TextSamples"> 74 </activity> 75 <activity android:name=".CarUiRecyclerViewSamples" 76 android:label="@string/car_ui_recycler_view" 77 android:theme="@style/Theme.CarUi" 78 android:parentActivityName="com.android.car.themeplayground.TextSamples"> 79 </activity> 80 <activity android:name=".DefaultThemeSamples" 81 android:label="@string/default_themes" 82 android:parentActivityName="com.android.car.themeplayground.TextSamples"> 83 </activity> 84 <activity android:name=".MultipleIntentSamples" 85 android:label="@string/multiple_intent" 86 android:parentActivityName="com.android.car.themeplayground.TextSamples"> 87 </activity> 88 </application> 89</manifest> 90