-
-
Notifications
You must be signed in to change notification settings - Fork 982
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
27 lines (21 loc) 路 922 Bytes
/
Copy pathAndroidManifest.xml
File metadata and controls
27 lines (21 loc) 路 922 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission android:name="android.permission.CAMERA" />
<!-- Have developers add this. We don't want AUDIO permission to be auto-added to
apps that just want to take pictures. -->
<!-- uses-permission android:name="android.permission.RECORD_AUDIO" /-->
<uses-feature
android:name="android.hardware.camera"
android:required="false"/>
<uses-feature
android:name="android.hardware.camera.autofocus"
android:required="false"/>
<uses-feature
android:name="android.hardware.camera.front"
android:required="false"/>
<uses-feature
android:name="android.hardware.microphone"
android:required="false"/>
<uses-sdk tools:overrideLibrary="com.otaliastudios.opengl" />
<application/>
</manifest>