blob: 56826f9cfbe5ed8376ea6507344d6c0dd7fab2e3 [file] [log] [blame]
Keun young Park3769d332012-08-29 10:16:37 -07001<?xml version="1.0" encoding="utf-8"?>
Stuart Scott86139112013-04-26 11:32:58 -07002<!--
3 Copyright (C) 2012 The Android Open Source Project
Keun young Park3769d332012-08-29 10:16:37 -07004
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
18<manifest xmlns:android="http://schemas.android.com/apk/res/android"
Oleksii Stepanianccdb5b22018-05-09 15:03:34 -070019 package="android.ui.cts"
20 android:targetSandboxVersion="2">
Keun young Park3769d332012-08-29 10:16:37 -070021
22 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
23 <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
24
25 <application>
26 <uses-library android:name="android.test.runner" />
Stuart Scott86139112013-04-26 11:32:58 -070027
Keun young Park3769d332012-08-29 10:16:37 -070028 <activity
Stuart Scott86139112013-04-26 11:32:58 -070029 android:name=".ScrollingActivity"
Stuart Scottda133d82013-08-20 10:52:05 -070030 android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode" >
Keun young Park3769d332012-08-29 10:16:37 -070031 <intent-filter>
32 <action android:name="android.intent.action.MAIN" />
Stuart Scott86139112013-04-26 11:32:58 -070033
34 <category android:name="android.intent.category.LAUNCHER" />
Keun young Park3769d332012-08-29 10:16:37 -070035 </intent-filter>
36 </activity>
37 </application>
Stuart Scott86139112013-04-26 11:32:58 -070038
39 <instrumentation
Brett Chabota6ea2482014-01-09 14:32:20 -080040 android:name="android.support.test.runner.AndroidJUnitRunner"
Stuart Scott86139112013-04-26 11:32:58 -070041 android:label="UI Latency measurement"
Stuart Scottbb212342015-09-15 14:04:06 -070042 android:targetPackage="android.ui.cts" >
Brett Chabota6ea2482014-01-09 14:32:20 -080043 <meta-data
44 android:name="listener"
45 android:value="com.android.cts.runner.CtsTestRunListener" />
46 </instrumentation>
Stuart Scott86139112013-04-26 11:32:58 -070047
Brett Chabota6ea2482014-01-09 14:32:20 -080048</manifest>