xref: /aosp_15_r20/pdk/apps/TestingCamera2/AndroidManifest.xml (revision ac7df209e3ba002eb4fcfc7c8d4b818a0371fca4)
1*ac7df209SYuntao Xu<?xml version="1.0" encoding="utf-8"?>
2*ac7df209SYuntao Xu
3*ac7df209SYuntao Xu<!--
4*ac7df209SYuntao Xu     Copyright (C) 2013 The Android Open Source Project
5*ac7df209SYuntao Xu
6*ac7df209SYuntao Xu     Licensed under the Apache License, Version 2.0 (the "License");
7*ac7df209SYuntao Xu     you may not use this file except in compliance with the License.
8*ac7df209SYuntao Xu     You may obtain a copy of the License at
9*ac7df209SYuntao Xu
10*ac7df209SYuntao Xu          http://www.apache.org/licenses/LICENSE-2.0
11*ac7df209SYuntao Xu
12*ac7df209SYuntao Xu     Unless required by applicable law or agreed to in writing, software
13*ac7df209SYuntao Xu     distributed under the License is distributed on an "AS IS" BASIS,
14*ac7df209SYuntao Xu     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15*ac7df209SYuntao Xu     See the License for the specific language governing permissions and
16*ac7df209SYuntao Xu     limitations under the License.
17*ac7df209SYuntao Xu-->
18*ac7df209SYuntao Xu
19*ac7df209SYuntao Xu<manifest xmlns:android="http://schemas.android.com/apk/res/android"
20*ac7df209SYuntao Xu    package="com.android.testingcamera2"
21*ac7df209SYuntao Xu    android:versionCode="1"
22*ac7df209SYuntao Xu    android:versionName="1.0" >
23*ac7df209SYuntao Xu
24*ac7df209SYuntao Xu    <uses-permission android:name="android.permission.CAMERA" />
25*ac7df209SYuntao Xu
26*ac7df209SYuntao Xu    <uses-feature android:name="android.hardware.camera" />
27*ac7df209SYuntao Xu    <uses-feature
28*ac7df209SYuntao Xu        android:name="android.hardware.camera.autofocus"
29*ac7df209SYuntao Xu        android:required="false" />
30*ac7df209SYuntao Xu
31*ac7df209SYuntao Xu    <uses-sdk
32*ac7df209SYuntao Xu        android:minSdkVersion="21"
33*ac7df209SYuntao Xu        android:targetSdkVersion="28" />
34*ac7df209SYuntao Xu
35*ac7df209SYuntao Xu    <uses-feature
36*ac7df209SYuntao Xu        android:name="android.hardware.camera.front"
37*ac7df209SYuntao Xu        android:required="false" />
38*ac7df209SYuntao Xu
39*ac7df209SYuntao Xu    <uses-permission android:name="android.permission.RECORD_AUDIO" />
40*ac7df209SYuntao Xu    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
41*ac7df209SYuntao Xu    <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
42*ac7df209SYuntao Xu
43*ac7df209SYuntao Xu    <application
44*ac7df209SYuntao Xu        android:icon="@mipmap/launcher_testingcamera2"
45*ac7df209SYuntao Xu        android:label="@string/app_name"
46*ac7df209SYuntao Xu        android:theme="@android:style/Theme.Holo">
47*ac7df209SYuntao Xu        <activity
48*ac7df209SYuntao Xu            android:name="com.android.testingcamera2.v1.TestingCamera2"
49*ac7df209SYuntao Xu            android:configChanges="orientation|keyboardHidden|screenSize"
50*ac7df209SYuntao Xu            android:label="@string/v1_app_name" >
51*ac7df209SYuntao Xu            <intent-filter>
52*ac7df209SYuntao Xu                <action android:name="android.intent.action.MAIN" />
53*ac7df209SYuntao Xu
54*ac7df209SYuntao Xu                <category android:name="android.intent.category.LAUNCHER" />
55*ac7df209SYuntao Xu            </intent-filter>
56*ac7df209SYuntao Xu        </activity>
57*ac7df209SYuntao Xu        <activity
58*ac7df209SYuntao Xu            android:name="com.android.testingcamera2.TestingCamera21"
59*ac7df209SYuntao Xu            android:label="@string/app_name"
60*ac7df209SYuntao Xu            android:configChanges="orientation|keyboardHidden|screenSize">
61*ac7df209SYuntao Xu            <intent-filter>
62*ac7df209SYuntao Xu                <action android:name="android.intent.action.MAIN" />
63*ac7df209SYuntao Xu                <category android:name="android.intent.category.LAUNCHER" />
64*ac7df209SYuntao Xu            </intent-filter>
65*ac7df209SYuntao Xu        </activity>
66*ac7df209SYuntao Xu    </application>
67*ac7df209SYuntao Xu
68*ac7df209SYuntao Xu</manifest>
69