| Vishnu Nair | 57928e6 | 2020-09-16 19:01:04 -0700 | [diff] [blame] | 1 | <?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" |
| 18 | package="com.android.test"> |
| 19 | |
| 20 | <uses-sdk android:minSdkVersion="29" |
| 21 | android:targetSdkVersion="29"/> |
| 22 | <!-- Enable / Disable tracing !--> |
| 23 | <uses-permission android:name="android.permission.DUMP" /> |
| 24 | <!-- Enable / Disable sv blast adapter !--> |
| 25 | <uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" /> |
| Vishnu Nair | a47f891 | 2020-11-11 18:25:48 -0800 | [diff] [blame] | 26 | <!-- Readback virtual display output !--> |
| 27 | <uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT"/> |
| 28 | <uses-permission android:name="android.permission.FOREGROUND_SERVICE"/> |
| 29 | <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/> |
| 30 | <!-- Save failed test bitmap images !--> |
| 31 | <uses-permission android:name="android.Manifest.permission.WRITE_EXTERNAL_STORAGE"/> |
| Vishnu Nair | 57928e6 | 2020-09-16 19:01:04 -0700 | [diff] [blame] | 32 | |
| 33 | <application android:allowBackup="false" |
| 34 | android:supportsRtl="true"> |
| 35 | <activity android:name=".MainActivity" |
| 36 | android:taskAffinity="com.android.test.MainActivity" |
| 37 | android:theme="@style/AppTheme" |
| Vishnu Nair | a47f891 | 2020-11-11 18:25:48 -0800 | [diff] [blame] | 38 | android:configChanges="orientation|screenSize" |
| Vishnu Nair | 57928e6 | 2020-09-16 19:01:04 -0700 | [diff] [blame] | 39 | android:label="SurfaceViewBufferTestApp" |
| 40 | android:exported="true"> |
| 41 | <intent-filter> |
| 42 | <action android:name="android.intent.action.MAIN"/> |
| 43 | <category android:name="android.intent.category.LAUNCHER"/> |
| 44 | </intent-filter> |
| 45 | </activity> |
| Vishnu Nair | a47f891 | 2020-11-11 18:25:48 -0800 | [diff] [blame] | 46 | <service android:name="android.view.cts.surfacevalidator.LocalMediaProjectionService" |
| 47 | android:foregroundServiceType="mediaProjection" |
| 48 | android:enabled="true"> |
| 49 | </service> |
| Vishnu Nair | 57928e6 | 2020-09-16 19:01:04 -0700 | [diff] [blame] | 50 | <uses-library android:name="android.test.runner"/> |
| 51 | </application> |
| 52 | |
| 53 | <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner" |
| 54 | android:targetPackage="com.android.test" |
| 55 | android:label="SurfaceViewBufferTests"> |
| 56 | </instrumentation> |
| 57 | </manifest> |