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="android.support.v17.leanback.tests">
18    <uses-sdk android:minSdkVersion="17"  android:targetSdkVersion="23"/>
19
20    <!--
21        This declares that this application uses the instrumentation test runner targeting
22        the package of android.support.v17.leanback.tests.  To run the tests use the command:
23        "adb shell am instrument -w android.support.v17.leanback.tests/android.test.InstrumentationTestRunner"
24    -->
25    <instrumentation
26        android:targetPackage="android.support.v17.leanback.tests"
27        android:name="android.test.InstrumentationTestRunner" />
28
29    <application
30        android:supportsRtl="true">
31        <uses-library android:name="android.test.runner" />
32
33        <activity android:name="android.support.v17.leanback.widget.GridActivity"
34            android:exported="true" />
35
36        <activity android:name=
37                          "android.support.v17.leanback.app.wizard.GuidedStepAttributesTestActivity"
38                  android:theme="@style/Theme.Leanback.GuidedStep"
39                  android:exported="true" />
40
41        <activity android:name="android.support.v17.leanback.app.BrowseFragmentTestActivity"
42                  android:theme="@style/Theme.Leanback.Browse"
43                  android:exported="true" />
44
45        <activity android:name="android.support.v17.leanback.app.BrowseSupportFragmentTestActivity"
46                  android:theme="@style/Theme.Leanback.Browse"
47                  android:exported="true" />
48
49        </application>
50
51</manifest>
52