a47f891fdf
Validate shared buffer mode & auto refresh, max buffer counts, buffer rejection & geometry. Test: atest SurfaceViewBufferTests Bug: 169849887 Change-Id: I322b62f1e0a8f13f68f4e70c8ef1e33a8d6217f5
58 lines
2.6 KiB
XML
58 lines
2.6 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2020 The Android Open Source Project
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
you may not use this file except in compliance with the License.
|
|
You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.test">
|
|
|
|
<uses-sdk android:minSdkVersion="29"
|
|
android:targetSdkVersion="29"/>
|
|
<!-- Enable / Disable tracing !-->
|
|
<uses-permission android:name="android.permission.DUMP" />
|
|
<!-- Enable / Disable sv blast adapter !-->
|
|
<uses-permission android:name="android.permission.WRITE_SECURE_SETTINGS" />
|
|
<!-- Readback virtual display output !-->
|
|
<uses-permission android:name="android.permission.CAPTURE_VIDEO_OUTPUT"/>
|
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
|
<!-- Save failed test bitmap images !-->
|
|
<uses-permission android:name="android.Manifest.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
<application android:allowBackup="false"
|
|
android:supportsRtl="true">
|
|
<activity android:name=".MainActivity"
|
|
android:taskAffinity="com.android.test.MainActivity"
|
|
android:theme="@style/AppTheme"
|
|
android:configChanges="orientation|screenSize"
|
|
android:label="SurfaceViewBufferTestApp"
|
|
android:exported="true">
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN"/>
|
|
<category android:name="android.intent.category.LAUNCHER"/>
|
|
</intent-filter>
|
|
</activity>
|
|
<service android:name="android.view.cts.surfacevalidator.LocalMediaProjectionService"
|
|
android:foregroundServiceType="mediaProjection"
|
|
android:enabled="true">
|
|
</service>
|
|
<uses-library android:name="android.test.runner"/>
|
|
</application>
|
|
|
|
<instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
|
|
android:targetPackage="com.android.test"
|
|
android:label="SurfaceViewBufferTests">
|
|
</instrumentation>
|
|
</manifest>
|