blob: 0862e620ba55fdc6e066bd4d44067ac3cc7796eb [file] [log] [blame]
Matt Pietalf5c67a82020-04-14 13:58:38 -04001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2020 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
17<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070018 package="android.controls.cts">
Matt Pietalf5c67a82020-04-14 13:58:38 -040019
20 <application>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070021 <uses-library android:name="android.test.runner"/>
22 <activity android:name="CtsControlsDeviceActivity"
23 android:exported="true">
Matt Pietalf5c67a82020-04-14 13:58:38 -040024 <intent-filter>
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070025 <action android:name="android.intent.action.MAIN"/>
26 <category android:name="android.intent.category.LAUNCHER"/>
Matt Pietalf5c67a82020-04-14 13:58:38 -040027 </intent-filter>
28 </activity>
29 </application>
30
31 <!-- self-instrumenting test package. -->
Ashwini Oruganti62e39bb2020-05-29 16:14:30 -070032 <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
33 android:targetPackage="android.controls.cts">
Matt Pietalf5c67a82020-04-14 13:58:38 -040034 </instrumentation>
35</manifest>