Home | History | Annotate | Download | only in camera
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <!--
      3  * Copyright (C) 2015 The Android Open Source Project
      4  *
      5  * Licensed under the Apache License, Version 2.0 (the "License");
      6  * you may not use this file except in compliance with the License.
      7  * You may obtain a copy of the License at
      8  *
      9  *      http://www.apache.org/licenses/LICENSE-2.0
     10  *
     11  * Unless required by applicable law or agreed to in writing, software
     12  * distributed under the License is distributed on an "AS IS" BASIS,
     13  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     14  * See the License for the specific language governing permissions and
     15  * limitations under the License.
     16  -->
     17 
     18 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     19     package="android.camera.cts">
     20     <uses-permission android:name="android.permission.DISABLE_KEYGUARD" />
     21     <uses-permission android:name="android.permission.CAMERA" />
     22     <uses-permission android:name="android.permission.RECORD_AUDIO" />
     23     <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
     24     <uses-permission android:name="android.permission.REORDER_TASKS" />
     25     <uses-permission android:name="android.permission.WAKE_LOCK" />
     26 
     27     <application android:largeHeap="true">
     28         <uses-library android:name="android.test.runner" />
     29 
     30         <activity android:name="android.hardware.cts.CameraCtsActivity"
     31             android:label="CameraCtsActivity"
     32             android:screenOrientation="landscape"
     33             android:configChanges="keyboardHidden|orientation|screenSize">
     34         </activity>
     35 
     36         <activity android:name="android.hardware.camera2.cts.Camera2SurfaceViewCtsActivity"
     37             android:label="Camera2CtsActivity"
     38             android:screenOrientation="landscape"
     39             android:configChanges="keyboardHidden|orientation|screenSize">
     40         </activity>
     41 
     42         <activity android:name="android.hardware.camera2.cts.Camera2MultiViewCtsActivity"
     43             android:label="Camera2MultiViewCtsActivity"
     44             android:screenOrientation="landscape"
     45             android:configChanges="keyboardHidden|orientation|screenSize">
     46         </activity>
     47 
     48         <activity android:name="android.hardware.cts.GLSurfaceViewCtsActivity"
     49             android:label="GLSurfaceViewCtsActivity"/>
     50 
     51         <service android:name="android.hardware.multiprocess.camera.cts.ErrorLoggingService"
     52             android:label="ErrorLoggingService"
     53             android:process=":errorLoggingServiceProcess"
     54             android:exported="false">
     55         </service>
     56 
     57         <activity android:name="android.hardware.multiprocess.camera.cts.Camera1Activity"
     58             android:label="RemoteCamera1Activity"
     59             android:screenOrientation="landscape"
     60             android:configChanges="keyboardHidden|orientation|screenSize"
     61             android:process=":camera1ActivityProcess">
     62         </activity>
     63 
     64         <activity android:name="android.hardware.multiprocess.camera.cts.Camera2Activity"
     65             android:label="RemoteCamera2Activity"
     66             android:screenOrientation="landscape"
     67             android:configChanges="keyboardHidden|orientation|screenSize"
     68             android:process=":camera2ActivityProcess">
     69         </activity>
     70 
     71         <activity android:name="android.hardware.multiprocess.camera.cts.MediaRecorderCameraActivity"
     72             android:label="RemoteMediaRecorderCameraActivity"
     73             android:screenOrientation="landscape"
     74             android:configChanges="keyboardHidden|orientation|screenSize"
     75             android:process=":mediaRecorderCameraActivityProcess">
     76         </activity>
     77 
     78     </application>
     79 
     80     <instrumentation android:name="android.support.test.runner.AndroidJUnitRunner"
     81                      android:targetPackage="android.camera.cts"
     82                      android:label="CTS tests of android camera">
     83         <meta-data android:name="listener"
     84             android:value="com.android.cts.runner.CtsTestRunListener" />
     85     </instrumentation>
     86 
     87 </manifest>
     88 
     89