Home | History | Annotate | Download | only in tests
      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="14"
     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         <activity
     31                 android:name="android.support.v7.app.AppCompatActivity"/>
     32 
     33         <activity android:name="android.support.v7.app.AppCompatMenuItemShortcutsTestActivity"/>
     34 
     35         <activity
     36             android:name="android.support.v7.app.AppCompatMenuItemIconTintingTestActivity"
     37             android:theme="@style/Theme.AppCompat.NoActionBar"/>
     38 
     39         <activity
     40                 android:name="android.support.v7.app.WindowDecorAppCompatActivity"/>
     41         <activity
     42                 android:name="android.support.v7.app.ToolbarAppCompatActivity"
     43                 android:theme="@style/Theme.AppCompat.NoActionBar"/>
     44 
     45         <activity
     46                 android:name="android.support.v7.app.DrawerLayoutActivity"
     47                 android:label="@string/drawer_layout_activity"
     48                 android:theme="@style/Theme.SampleDrawerLayout" />
     49 
     50         <activity
     51                 android:name="android.support.v7.app.DrawerLayoutDoubleActivity"
     52                 android:label="@string/drawer_layout_activity"
     53                 android:theme="@style/Theme.SampleDrawerLayout" />
     54 
     55         <activity
     56                 android:name="android.support.v7.app.DrawerDynamicLayoutActivity"
     57                 android:label="@string/drawer_layout_activity"
     58                 android:theme="@style/Theme.SampleDrawerLayout" />
     59 
     60         <activity
     61                 android:name="android.support.v7.app.AlertDialogTestActivity"
     62                 android:label="@string/alert_dialog_activity"
     63                 android:theme="@style/Theme.AppCompat.Light" />
     64 
     65         <activity android:name="android.support.v7.view.SupportMenuInflaterTestActivity" />
     66 
     67         <activity
     68                 android:name="android.support.v7.widget.PopupTestActivity"
     69                 android:label="@string/popup_activity"
     70                 android:theme="@style/Theme.AppCompat.Light" />
     71 
     72         <activity
     73                 android:name="android.support.v7.widget.AppCompatSpinnerActivity"
     74                 android:label="@string/app_compat_spinner_activity"
     75                 android:theme="@style/Theme.AppCompat.Light" />
     76 
     77         <activity
     78                 android:name="android.support.v7.widget.AppCompatTextViewActivity"
     79                 android:label="@string/app_compat_text_view_activity"
     80                 android:theme="@style/Theme.TextColors" />
     81 
     82         <activity
     83                 android:name="android.support.v7.widget.AppCompatTextViewAutoSizeActivity"
     84                 android:label="@string/app_compat_text_view_auto_size_activity"
     85                 android:theme="@style/Theme.AppCompat.Light" />
     86 
     87         <activity
     88                 android:name="android.support.v7.widget.AppCompatImageButtonActivity"
     89                 android:label="@string/app_compat_image_button_activity"
     90                 android:theme="@style/Theme.AppCompat.Light" />
     91 
     92         <activity
     93                 android:name="android.support.v7.widget.AppCompatImageViewActivity"
     94                 android:label="@string/app_compat_image_view_activity"
     95                 android:theme="@style/Theme.AppCompat.Light" />
     96 
     97         <activity
     98                 android:name="android.support.v7.widget.AppCompatButtonActivity"
     99                 android:label="@string/app_compat_button_activity"
    100                 android:theme="@style/Theme.AppCompat.Light" />
    101 
    102         <activity
    103                 android:name="android.support.v7.widget.SearchViewTestActivity"
    104                 android:label="@string/search_view_activity"
    105                 android:theme="@style/Theme.AppCompat.Light" />
    106 
    107         <activity
    108                 android:name="android.support.v7.app.LayoutInflaterFactoryTestActivity"/>
    109 
    110         <activity
    111                 android:name="android.support.v7.app.FragmentContentIdActivity"/>
    112 
    113         <activity
    114                 android:name="android.support.v7.app.NightModeActivity"
    115                 android:theme="@style/Theme.AppCompat.DayNight"/>
    116 
    117         <activity
    118             android:name="android.support.v7.app.AppCompatVectorDrawableIntegrationActivity"/>
    119 
    120     </application>
    121 
    122 </manifest>
    123