Home | History | Annotate | Download | only in androidTest
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!-- Copyright (C) 2015 The Android Open Source Project
      3 
      4      Licensed under the Apache License, Version 2.0 (the "License");
      5      you may not use this file except in compliance with the License.
      6      You may obtain a copy of the License at
      7 
      8           http://www.apache.org/licenses/LICENSE-2.0
      9 
     10      Unless required by applicable law or agreed to in writing, software
     11      distributed under the License is distributed on an "AS IS" BASIS,
     12      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     13      See the License for the specific language governing permissions and
     14      limitations under the License.
     15 -->
     16 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     17           package="androidx.leanback.test">
     18     <uses-sdk android:targetSdkVersion="${target-sdk-version}"/>
     19 
     20     <application
     21         android:supportsRtl="true">
     22         <activity android:name="androidx.leanback.widget.GridActivity"
     23                   android:exported="true"/>
     24 
     25         <activity android:name="androidx.leanback.widget.picker.TimePickerActivity"
     26                   android:exported="true"
     27                   android:theme="@style/Theme.Leanback"/>
     28 
     29         <activity android:name="androidx.leanback.widget.picker.DatePickerActivity"
     30                   android:exported="true"
     31                   android:theme="@style/Theme.Leanback"/>
     32 
     33         <activity
     34             android:name="androidx.leanback.app.wizard.GuidedStepAttributesTestActivity"
     35             android:exported="true"
     36             android:theme="@style/Theme.Leanback.GuidedStep"/>
     37 
     38         <activity android:name="androidx.leanback.app.SingleFragmentTestActivity"
     39                   android:exported="true"
     40                   android:theme="@style/Theme.Leanback"/>
     41 
     42         <activity android:name="androidx.leanback.app.BrowseFragmentTestActivity"
     43                   android:exported="true"
     44                   android:theme="@style/Theme.Leanback.Browse"/>
     45 
     46         <activity android:name="androidx.leanback.app.SingleSupportFragmentTestActivity"
     47                   android:exported="true"
     48                   android:theme="@style/Theme.Leanback"/>
     49 
     50         <activity android:name="androidx.leanback.app.BrowseSupportFragmentTestActivity"
     51                   android:exported="true"
     52                   android:theme="@style/Theme.Leanback.Browse"/>
     53 
     54         <activity android:name="androidx.leanback.app.GuidedStepFragmentTestActivity"
     55                   android:exported="true"
     56                   android:theme="@style/Theme.Leanback.GuidedStep"/>
     57 
     58         <activity
     59             android:name="androidx.leanback.app.GuidedStepSupportFragmentTestActivity"
     60             android:exported="true"
     61             android:theme="@style/Theme.Leanback.GuidedStep"/>
     62 
     63         <activity android:name="androidx.leanback.app.TestActivity"
     64                   android:exported="true"
     65                   android:theme="@style/Theme.Leanback"/>
     66     </application>
     67 
     68 </manifest>
     69