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.
43 lines
1.6 KiB
43 lines
1.6 KiB
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.github.florent37.camerafragment.sample">
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
<uses-permission android:name="android.permission.FLASHLIGHT" />
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
|
|
|
|
|
|
<application
|
|
android:allowBackup="true"
|
|
android:icon="@mipmap/ic_launcher"
|
|
android:label="@string/app_name"
|
|
android:supportsRtl="true"
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
android:name="com.github.florent37.camerafragment.PreviewActivity"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/ThemeFullscreen" />
|
|
|
|
<activity
|
|
android:name="com.github.florent37.camerafragment.sample.MainActivityCustoms"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/ThemeFullscreen" >
|
|
</activity>
|
|
|
|
<activity
|
|
android:name="com.github.florent37.camerafragment.sample.MainActivity"
|
|
android:screenOrientation="portrait"
|
|
android:theme="@style/ThemeFullscreen" >
|
|
<intent-filter>
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
</intent-filter>
|
|
</activity>
|
|
|
|
</application>
|
|
|
|
|
|
</manifest>
|
|
|