blob: cc60bd2e6672f968df7be45f067a65dd305e1870 [file] [log] [blame]
Craig Donner03480ac2016-03-31 21:10:58 -07001<?xml version="1.0" encoding="utf-8"?>
2<!-- Copyright (C) 2016 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.vr.cts"
18 android:versionCode="1"
19 android:versionName="1.0" >
20
21 <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
Srinath Sridharanfaad1bb2016-07-19 11:25:37 -070022 <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
Craig Donner03480ac2016-03-31 21:10:58 -070023 <uses-sdk android:minSdkVersion="14" />
24 <uses-feature android:glEsVersion="0x00020000"/>
25 <instrumentation
Brett Chabotd58b5ae2019-02-15 11:22:50 -080026 android:name="androidx.test.runner.AndroidJUnitRunner"
Craig Donner03480ac2016-03-31 21:10:58 -070027 android:targetPackage="android.vr.cts" >
28 <meta-data android:name="listener"
29 android:value="com.android.cts.runner.CtsTestRunListener" />
30 </instrumentation>
31
32 <application
33 android:icon="@drawable/ic_launcher"
34 android:label="@string/app_name"
35 android:hardwareAccelerated="false" >
36
Srinath Sridharanfaad1bb2016-07-19 11:25:37 -070037 <service android:name="com.android.cts.verifier.vr.MockVrListenerService"
38 android:exported="true"
39 android:enabled="true"
40 android:label="@string/vr_service_name"
41 android:permission="android.permission.BIND_VR_LISTENER_SERVICE">
42 <intent-filter>
43 <action android:name="android.service.vr.VrListenerService" />
44 </intent-filter>
45 </service>
46
Craig Donner03480ac2016-03-31 21:10:58 -070047 <activity
48 android:label="@string/app_name"
49 android:name="android.vr.cts.OpenGLESActivity">
50 </activity>
Martijn Coenenec7aeb52016-04-04 16:36:35 +020051 <activity android:name=".CtsActivity"
52 android:label="CtsActivity">
53 <intent-filter>
54 <action android:name="android.intent.action.MAIN" />
55 <category android:name="android.intent.category.FRAMEWORK_INSTRUMENTATION_TEST" />
56 </intent-filter>
57 </activity>
Craig Donner03480ac2016-03-31 21:10:58 -070058 <uses-library android:name="android.test.runner" />
59 </application>
60
61</manifest>