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          xmlns:tools="http://schemas.android.com/tools"
19          package="android.support.v7.appcompat.test">
20
21    <uses-sdk
22            android:minSdkVersion="7"
23            android:targetSdkVersion="23"
24            tools:overrideLibrary="android.support.test, android.app, android.support.test.rule,
25                      android.support.test.espresso, android.support.test.espresso.idling"/>
26
27    <application
28        android:theme="@style/Theme.AppCompat"
29        android:supportsRtl="true">
30
31        <uses-library android:name="android.test.runner"/>
32
33        <activity
34                android:name="android.support.v7.app.AppCompatActivity"/>
35
36        <activity
37                android:name="android.support.v7.app.WindowDecorActionBarActivity"/>
38        <activity
39                android:name="android.support.v7.app.ToolbarActionBarActivity"
40                android:theme="@style/Theme.AppCompat.NoActionBar"/>
41
42        <activity
43                android:name="android.support.v7.app.DrawerLayoutActivity"
44                android:label="@string/drawer_layout_activity"
45                android:theme="@style/Theme.SampleDrawerLayout" />
46
47        <activity
48                android:name="android.support.v7.app.DrawerLayoutDoubleActivity"
49                android:label="@string/drawer_layout_activity"
50                android:theme="@style/Theme.SampleDrawerLayout" />
51
52        <activity
53                android:name="android.support.v7.app.DrawerDynamicLayoutActivity"
54                android:label="@string/drawer_layout_activity"
55                android:theme="@style/Theme.SampleDrawerLayout" />
56
57        <activity
58                android:name="android.support.v7.app.AlertDialogTestActivity"
59                android:label="@string/alert_dialog_activity"
60                android:theme="@style/Theme.AppCompat.Light" />
61
62        <activity
63                android:name="android.support.v7.widget.PopupTestActivity"
64                android:label="@string/popup_activity"
65                android:theme="@style/Theme.AppCompat.Light" />
66
67        <activity
68                android:name="android.support.v7.widget.AppCompatSpinnerActivity"
69                android:label="@string/app_compat_spinner_activity"
70                android:theme="@style/Theme.AppCompat.Light" />
71
72        <activity
73                android:name="android.support.v7.widget.AppCompatTextViewActivity"
74                android:label="@string/app_compat_text_view_activity"
75                android:theme="@style/Theme.TextColors" />
76
77        <activity
78                android:name="android.support.v7.widget.AppCompatImageViewActivity"
79                android:label="@string/app_compat_image_view_activity"
80                android:theme="@style/Theme.AppCompat.Light" />
81
82        <activity
83                android:name="android.support.v7.widget.AppCompatButtonActivity"
84                android:label="@string/app_compat_button_activity"
85                android:theme="@style/Theme.AppCompat.Light" />
86
87        <activity
88                android:name="android.support.v7.app.LayoutInflaterFactoryTestActivity"/>
89
90        <activity
91                android:name="android.support.v7.app.FragmentContentIdActivity"/>
92
93    </application>
94
95    <instrumentation
96            android:name="android.test.InstrumentationTestRunner"
97            android:targetPackage="android.support.v7.appcompat.test"/>
98
99</manifest>
100