blob: 61224902d67634f74aef5159e474549e805bee8c [file] [log] [blame]
Kirill Grouchnikov394c4272015-12-21 14:09:23 -05001<?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.design.test">
20
21 <uses-sdk
Kirill Grouchnikovdf153992016-05-04 16:55:20 -040022 android:minSdkVersion="9"
Kirill Grouchnikovc5540162016-02-11 13:51:17 -080023 android:targetSdkVersion="23"
Chris Banesf6c82b62016-01-13 16:38:59 +000024 tools:overrideLibrary="android.support.test, android.app, android.support.test.rule,
25 android.support.test.espresso, android.support.test.espresso.idling"/>
Kirill Grouchnikov394c4272015-12-21 14:09:23 -050026
Kirill Grouchnikovc5540162016-02-11 13:51:17 -080027 <application
28 android:supportsRtl="true"
Chris Banes964604e2016-11-22 19:42:14 +000029 android:theme="@style/Theme.Design">
Kirill Grouchnikov394c4272015-12-21 14:09:23 -050030 <uses-library android:name="android.test.runner"/>
31
32 <activity
33 android:theme="@style/Theme.AppCompat.NoActionBar"
34 android:name="android.support.design.widget.TabLayoutWithViewPagerActivity"/>
35
Chris Banesbfd48d02016-01-06 10:21:56 +000036 <activity
37 android:theme="@style/Theme.AppCompat.NoActionBar"
Kirill Grouchnikov7b7e3bf2016-02-11 11:28:04 -080038 android:name="android.support.design.widget.SnackbarActivity"/>
Chris Banesbfd48d02016-01-06 10:21:56 +000039
Yuichi Araki48cd60a2016-01-12 15:48:59 +090040 <activity
Chris Banes27705d32016-06-22 12:01:43 +010041 android:theme="@style/Theme.TranslucentNavBar"
42 android:name="android.support.design.widget.SnackbarActivityWithTranslucentNavBar"/>
43
44 <activity
Chris Banesb6b4a302016-06-28 13:06:35 +010045 android:theme="@style/Theme.AppCompat.NoActionBar"
46 android:name="android.support.design.widget.SnackbarActivityWithFAB"/>
47
48 <activity
Chris Banes13633352016-05-25 14:35:52 +010049 android:theme="@style/Theme.TranslucentStatus"
Kirill Grouchnikov5ee7b3d2016-02-12 16:30:03 -080050 android:name="android.support.design.widget.DynamicCoordinatorLayoutActivity"/>
Chris Banes50f777a2016-02-25 16:29:55 +000051
52 <activity
Chris Banes13633352016-05-25 14:35:52 +010053 android:theme="@style/Theme.AppCompat.NoActionBar"
54 android:name="android.support.design.widget.TabLayoutPoolingActivity"/>
Chris Banes84549392016-02-26 10:08:28 +000055
56 <activity
Chris Banes50f777a2016-02-25 16:29:55 +000057 android:theme="@style/Theme.AppCompat.NoActionBar"
Yuichi Araki48cd60a2016-01-12 15:48:59 +090058 android:name="android.support.design.widget.BottomSheetBehaviorActivity"/>
59
Chris Banes4cc50ca2016-01-05 18:15:20 +000060 <activity
Yuichi Arakia61e9792016-03-22 20:04:43 +090061 android:theme="@style/Theme.AppCompat.NoActionBar"
62 android:name="android.support.design.widget.BottomSheetBehaviorWithInsetsActivity"/>
63
64 <activity
Yuichi Araki3bd9d182016-02-26 15:26:15 +090065 android:theme="@style/Theme.AppCompat.NoActionBar"
66 android:name="android.support.design.widget.BottomSheetDialogActivity"/>
67
68 <activity
Yuichi Araki1dbdc6b2016-04-18 13:21:56 +090069 android:theme="@style/Theme.AppCompat.NoActionBar"
70 android:name="android.support.design.widget.CoordinatorLayoutActivity"/>
71
72 <activity
Chris Banesd95e0bb2016-02-24 10:00:40 +000073 android:name="android.support.design.widget.FloatingActionButtonActivity"
74 android:theme="@style/Theme.AppCompat.Light.NoActionBar"/>
75
76 <activity
Kirill Grouchnikovc10ba252016-01-25 17:19:00 -050077 android:theme="@style/Theme.AppCompat.NoActionBar"
78 android:name="android.support.design.widget.NavigationViewActivity"/>
79
80 <activity
Aurimas Liutikase17fd0d2016-06-21 14:34:10 -070081 android:theme="@style/Theme.AppCompat.NoActionBar"
82 android:name="android.support.design.widget.BottomNavigationViewActivity"/>
83
84 <activity
Chris Banes9ba4dbe2016-02-25 15:38:42 +000085 android:theme="@style/Theme.AppCompat.NoActionBar"
86 android:name="android.support.design.widget.TextInputLayoutActivity"/>
87
88 <activity
Chris Banes4cc50ca2016-01-05 18:15:20 +000089 android:name="android.support.v7.app.AppCompatActivity"/>
90
Chris Banes2bab57e2016-12-13 15:41:14 +000091 <activity
92 android:name="android.support.design.widget.AppBarLayoutCollapsePinTestActivity"
93 android:theme="@style/Theme.TranslucentStatus"/>
94
Kirill Grouchnikovee01b9b2017-04-18 11:15:28 -040095 <activity
96 android:name="android.support.design.widget.AppBarWithScrollbarsActivity"
97 android:theme="@style/Theme.AppCompat.Light.DarkActionBar"/>
98
Kirill Grouchnikov394c4272015-12-21 14:09:23 -050099 </application>
100
101 <instrumentation
102 android:name="android.test.InstrumentationTestRunner"
103 android:targetPackage="android.support.design.test"/>
104
105</manifest>