xref: /aosp_15_r20/cts/tests/camera/AndroidManifest.xml (revision b7c941bb3fa97aba169d73cee0bed2de8ac964bf)
1*b7c941bbSAndroid Build Coastguard Worker<?xml version="1.0" encoding="utf-8"?>
2*b7c941bbSAndroid Build Coastguard Worker<!--
3*b7c941bbSAndroid Build Coastguard Worker * Copyright (C) 2015 The Android Open Source Project
4*b7c941bbSAndroid Build Coastguard Worker *
5*b7c941bbSAndroid Build Coastguard Worker * Licensed under the Apache License, Version 2.0 (the "License");
6*b7c941bbSAndroid Build Coastguard Worker * you may not use this file except in compliance with the License.
7*b7c941bbSAndroid Build Coastguard Worker * You may obtain a copy of the License at
8*b7c941bbSAndroid Build Coastguard Worker *
9*b7c941bbSAndroid Build Coastguard Worker *      http://www.apache.org/licenses/LICENSE-2.0
10*b7c941bbSAndroid Build Coastguard Worker *
11*b7c941bbSAndroid Build Coastguard Worker * Unless required by applicable law or agreed to in writing, software
12*b7c941bbSAndroid Build Coastguard Worker * distributed under the License is distributed on an "AS IS" BASIS,
13*b7c941bbSAndroid Build Coastguard Worker * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14*b7c941bbSAndroid Build Coastguard Worker * See the License for the specific language governing permissions and
15*b7c941bbSAndroid Build Coastguard Worker * limitations under the License.
16*b7c941bbSAndroid Build Coastguard Worker -->
17*b7c941bbSAndroid Build Coastguard Worker
18*b7c941bbSAndroid Build Coastguard Worker<manifest xmlns:android="http://schemas.android.com/apk/res/android"
19*b7c941bbSAndroid Build Coastguard Worker    package="android.camera.cts"
20*b7c941bbSAndroid Build Coastguard Worker    android:targetSandboxVersion="2">
21*b7c941bbSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
22*b7c941bbSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.CAMERA" />
23*b7c941bbSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.RECORD_AUDIO" />
24*b7c941bbSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
25*b7c941bbSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.REORDER_TASKS" />
26*b7c941bbSAndroid Build Coastguard Worker    <uses-permission android:name="android.permission.WAKE_LOCK" />
27*b7c941bbSAndroid Build Coastguard Worker
28*b7c941bbSAndroid Build Coastguard Worker    <queries>
29*b7c941bbSAndroid Build Coastguard Worker        <package android:name="com.android.camera2.cts.propertytestapp1" />
30*b7c941bbSAndroid Build Coastguard Worker        <package android:name="com.android.camera2.cts.propertytestapp2" />
31*b7c941bbSAndroid Build Coastguard Worker    </queries>
32*b7c941bbSAndroid Build Coastguard Worker
33*b7c941bbSAndroid Build Coastguard Worker    <uses-sdk android:targetSdkVersion="34" />
34*b7c941bbSAndroid Build Coastguard Worker    <application android:largeHeap="true">
35*b7c941bbSAndroid Build Coastguard Worker        <uses-library android:name="android.test.runner" />
36*b7c941bbSAndroid Build Coastguard Worker        <property android:name="android.camera.PROPERTY_COMPAT_OVERRIDE_LANDSCAPE_TO_PORTRAIT"
37*b7c941bbSAndroid Build Coastguard Worker                  android:value="false" />
38*b7c941bbSAndroid Build Coastguard Worker
39*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.cts.CameraCtsActivity"
40*b7c941bbSAndroid Build Coastguard Worker            android:label="CameraCtsActivity"
41*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
42*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
43*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
44*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
45*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
46*b7c941bbSAndroid Build Coastguard Worker        </activity>
47*b7c941bbSAndroid Build Coastguard Worker
48*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.camera2.cts.Camera2SurfaceViewCtsActivity"
49*b7c941bbSAndroid Build Coastguard Worker            android:label="Camera2CtsActivity"
50*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
51*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize"
52*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
53*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
54*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
55*b7c941bbSAndroid Build Coastguard Worker        </activity>
56*b7c941bbSAndroid Build Coastguard Worker
57*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.camera2.cts.Camera2MultiViewCtsActivity"
58*b7c941bbSAndroid Build Coastguard Worker            android:label="Camera2MultiViewCtsActivity"
59*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
60*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize"
61*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
62*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
63*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
64*b7c941bbSAndroid Build Coastguard Worker        </activity>
65*b7c941bbSAndroid Build Coastguard Worker
66*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.cts.GLSurfaceViewCtsActivity"
67*b7c941bbSAndroid Build Coastguard Worker            android:label="GLSurfaceViewCtsActivity"/>
68*b7c941bbSAndroid Build Coastguard Worker
69*b7c941bbSAndroid Build Coastguard Worker        <service android:name="android.hardware.multiprocess.camera.cts.ErrorLoggingService"
70*b7c941bbSAndroid Build Coastguard Worker            android:label="ErrorLoggingService"
71*b7c941bbSAndroid Build Coastguard Worker            android:process=":errorLoggingServiceProcess"
72*b7c941bbSAndroid Build Coastguard Worker            android:exported="false">
73*b7c941bbSAndroid Build Coastguard Worker        </service>
74*b7c941bbSAndroid Build Coastguard Worker
75*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.multiprocess.camera.cts.Camera1Activity"
76*b7c941bbSAndroid Build Coastguard Worker            android:label="RemoteCamera1Activity"
77*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
78*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize"
79*b7c941bbSAndroid Build Coastguard Worker            android:process=":camera1ActivityProcess"
80*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
81*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
82*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
83*b7c941bbSAndroid Build Coastguard Worker        </activity>
84*b7c941bbSAndroid Build Coastguard Worker
85*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.multiprocess.camera.cts.Camera2Activity"
86*b7c941bbSAndroid Build Coastguard Worker            android:label="RemoteCamera2Activity"
87*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
88*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize|screenLayout"
89*b7c941bbSAndroid Build Coastguard Worker            android:process=":camera2ActivityProcess"
90*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
91*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
92*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true"
93*b7c941bbSAndroid Build Coastguard Worker            android:exported="true"
94*b7c941bbSAndroid Build Coastguard Worker            android:taskAffinity=".Camera2Activity">
95*b7c941bbSAndroid Build Coastguard Worker        </activity>
96*b7c941bbSAndroid Build Coastguard Worker
97*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.camera2.cts.Camera2OfflineTestActivity"
98*b7c941bbSAndroid Build Coastguard Worker            android:label="RemoteCamera2OfflineTestActivity"
99*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
100*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize"
101*b7c941bbSAndroid Build Coastguard Worker            android:process=":camera2ActivityProcess"
102*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
103*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
104*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
105*b7c941bbSAndroid Build Coastguard Worker        </activity>
106*b7c941bbSAndroid Build Coastguard Worker
107*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.multiprocess.camera.cts.MediaRecorderCameraActivity"
108*b7c941bbSAndroid Build Coastguard Worker            android:label="RemoteMediaRecorderCameraActivity"
109*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
110*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize"
111*b7c941bbSAndroid Build Coastguard Worker            android:process=":mediaRecorderCameraActivityProcess"
112*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
113*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
114*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
115*b7c941bbSAndroid Build Coastguard Worker        </activity>
116*b7c941bbSAndroid Build Coastguard Worker
117*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.camera2.cts.CameraExtensionTestActivity"
118*b7c941bbSAndroid Build Coastguard Worker            android:label="CameraExtensionTestActivity"
119*b7c941bbSAndroid Build Coastguard Worker            android:screenOrientation="locked"
120*b7c941bbSAndroid Build Coastguard Worker            android:configChanges="keyboardHidden|orientation|screenSize"
121*b7c941bbSAndroid Build Coastguard Worker            android:showWhenLocked="true"
122*b7c941bbSAndroid Build Coastguard Worker            android:turnScreenOn="true"
123*b7c941bbSAndroid Build Coastguard Worker            android:keepScreenOn="true">
124*b7c941bbSAndroid Build Coastguard Worker        </activity>
125*b7c941bbSAndroid Build Coastguard Worker        <activity android:name="android.hardware.camera2.cts.EmptyActivity"
126*b7c941bbSAndroid Build Coastguard Worker            android:label="EmptyActivity">
127*b7c941bbSAndroid Build Coastguard Worker        </activity>
128*b7c941bbSAndroid Build Coastguard Worker    </application>
129*b7c941bbSAndroid Build Coastguard Worker
130*b7c941bbSAndroid Build Coastguard Worker    <instrumentation android:name="androidx.test.runner.AndroidJUnitRunner"
131*b7c941bbSAndroid Build Coastguard Worker                     android:targetPackage="android.camera.cts"
132*b7c941bbSAndroid Build Coastguard Worker                     android:label="CTS tests of android camera">
133*b7c941bbSAndroid Build Coastguard Worker    </instrumentation>
134*b7c941bbSAndroid Build Coastguard Worker
135*b7c941bbSAndroid Build Coastguard Worker</manifest>
136*b7c941bbSAndroid Build Coastguard Worker
137