1<?xml version="1.0" encoding="utf-8"?> 2<!-- 3 Copyright (C) 2015 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<manifest xmlns:android="http://schemas.android.com/apk/res/android" 18 package="android.support.v7.appcompat.test"> 19 <uses-sdk android:targetSdkVersion="${target-sdk-version}"/> 20 21 <application 22 android:supportsRtl="true" 23 android:theme="@style/Theme.AppCompat"> 24 <activity 25 android:name="androidx.appcompat.app.AppCompatActivity"/> 26 27 <activity android:name="androidx.appcompat.app.AppCompatMenuItemShortcutsTestActivity"/> 28 29 <activity 30 android:name="androidx.appcompat.app.AppCompatMenuItemIconTintingTestActivity" 31 android:theme="@style/Theme.AppCompat.NoActionBar"/> 32 33 <activity 34 android:name="androidx.appcompat.app.WindowDecorAppCompatActivity"/> 35 <activity 36 android:name="androidx.appcompat.app.ToolbarAppCompatActivity" 37 android:theme="@style/Theme.AppCompat.NoActionBar"/> 38 39 <activity 40 android:name="androidx.appcompat.app.DrawerLayoutActivity" 41 android:label="@string/drawer_layout_activity" 42 android:theme="@style/Theme.SampleDrawerLayout"/> 43 44 <activity 45 android:name="androidx.appcompat.app.DrawerInteractionActivity" 46 android:label="@string/drawer_layout_activity" 47 android:theme="@style/Theme.SampleDrawerLayout"/> 48 49 <activity 50 android:name="androidx.appcompat.app.DrawerLayoutDoubleActivity" 51 android:label="@string/drawer_layout_activity" 52 android:theme="@style/Theme.SampleDrawerLayout"/> 53 54 <activity 55 android:name="androidx.appcompat.app.DrawerDynamicLayoutActivity" 56 android:label="@string/drawer_layout_activity" 57 android:theme="@style/Theme.SampleDrawerLayout"/> 58 59 <activity 60 android:name="androidx.appcompat.app.AlertDialogTestActivity" 61 android:label="@string/alert_dialog_activity" 62 android:theme="@style/Theme.AppCompat.Light"/> 63 64 <activity android:name="androidx.appcompat.view.SupportMenuInflaterTestActivity"/> 65 66 <activity 67 android:name="androidx.appcompat.widget.PopupTestActivity" 68 android:label="@string/popup_activity" 69 android:theme="@style/Theme.AppCompat.Light"/> 70 71 <activity 72 android:name="androidx.appcompat.widget.AppCompatSpinnerActivity" 73 android:label="@string/app_compat_spinner_activity" 74 android:theme="@style/Theme.AppCompat.Light"/> 75 76 <activity 77 android:name="androidx.appcompat.widget.AppCompatTextViewActivity" 78 android:label="@string/app_compat_text_view_activity" 79 android:theme="@style/Theme.TextColors"/> 80 81 <activity 82 android:name="androidx.appcompat.widget.AppCompatTextViewAutoSizeActivity" 83 android:label="@string/app_compat_text_view_auto_size_activity" 84 android:theme="@style/Theme.AppCompat.Light"/> 85 86 <activity 87 android:name="androidx.appcompat.widget.AppCompatButtonAutoSizeActivity" 88 android:label="@string/app_compat_button_auto_size_activity" 89 android:theme="@style/Theme.AppCompat.Light"/> 90 91 <activity 92 android:name="androidx.appcompat.widget.AppCompatImageButtonActivity" 93 android:label="@string/app_compat_image_button_activity" 94 android:theme="@style/Theme.AppCompat.Light"/> 95 96 <activity 97 android:name="androidx.appcompat.widget.AppCompatImageViewActivity" 98 android:label="@string/app_compat_image_view_activity" 99 android:theme="@style/Theme.AppCompat.Light"/> 100 101 <activity 102 android:name="androidx.appcompat.widget.AppCompatButtonActivity" 103 android:label="@string/app_compat_button_activity" 104 android:theme="@style/Theme.AppCompat.Light"/> 105 106 <activity 107 android:name="androidx.appcompat.widget.AppCompatRadioButtonActivity" 108 android:label="@string/app_compat_button_activity" 109 android:theme="@style/Theme.AppCompat.Light"/> 110 111 <activity 112 android:name="androidx.appcompat.widget.SearchViewTestActivity" 113 android:label="@string/search_view_activity" 114 android:theme="@style/Theme.AppCompat.Light"/> 115 116 <activity 117 android:name="androidx.appcompat.app.LayoutInflaterFactoryTestActivity"/> 118 119 <activity 120 android:name="androidx.appcompat.app.FragmentContentIdActivity"/> 121 122 <activity 123 android:name="androidx.appcompat.app.NightModeActivity" 124 android:theme="@style/Theme.AppCompat.DayNight"/> 125 126 <activity 127 android:name="androidx.appcompat.app.AppCompatVectorDrawableIntegrationActivity"/> 128 129 <activity 130 android:name="androidx.appcompat.app.AppCompatInflaterDefaultActivity"/> 131 132 <activity 133 android:name="androidx.appcompat.app.AppCompatInflaterBadClassNameActivity" 134 android:theme="@style/Theme.CustomInflaterBadClassName"/> 135 136 <activity 137 android:name="androidx.appcompat.app.AppCompatInflaterNullActivity" 138 android:theme="@style/Theme.CustomInflaterNull"/> 139 140 <activity 141 android:name="androidx.appcompat.app.AppCompatInflaterCustomActivity" 142 android:theme="@style/Theme.CustomInflater"/> 143 144 </application> 145 146</manifest> 147