You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
840 B
25 lines
840 B
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.flurgle.camerakit">
|
|
|
|
<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"/>
|
|
|
|
<application/>
|
|
|
|
</manifest> |