Craig Donner | 03480ac | 2016-03-31 21:10:58 -0700 | [diff] [blame] | 1 | <?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 Sridharan | faad1bb | 2016-07-19 11:25:37 -0700 | [diff] [blame] | 22 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
Craig Donner | 03480ac | 2016-03-31 21:10:58 -0700 | [diff] [blame] | 23 | <uses-sdk android:minSdkVersion="14" /> |
| 24 | <uses-feature android:glEsVersion="0x00020000"/> |
| 25 | <instrumentation |
Brett Chabot | 1160eca | 2019-03-01 13:25:23 -0800 | [diff] [blame] | 26 | android:name="androidx.test.runner.AndroidJUnitRunner" |
Craig Donner | 03480ac | 2016-03-31 21:10:58 -0700 | [diff] [blame] | 27 | 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 Sridharan | faad1bb | 2016-07-19 11:25:37 -0700 | [diff] [blame] | 37 | <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 Donner | 03480ac | 2016-03-31 21:10:58 -0700 | [diff] [blame] | 47 | <activity |
| 48 | android:label="@string/app_name" |
| 49 | android:name="android.vr.cts.OpenGLESActivity"> |
| 50 | </activity> |
Martijn Coenen | ec7aeb5 | 2016-04-04 16:36:35 +0200 | [diff] [blame] | 51 | <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 Donner | 03480ac | 2016-03-31 21:10:58 -0700 | [diff] [blame] | 58 | <uses-library android:name="android.test.runner" /> |
| 59 | </application> |
| 60 | |
| 61 | </manifest> |