2021-02-19 16:07:53 +01:00
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-02-19 21:05:01 +01:00
|
|
|
package="com.mrousavy.camera.example">
|
2021-02-19 16:07:53 +01:00
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
|
2021-02-19 19:29:29 +01:00
|
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
|
|
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA" />
|
|
|
|
<uses-permission android:name="android.permission.RECORD_AUDIO" />
|
|
|
|
|
2021-02-19 16:07:53 +01:00
|
|
|
<application
|
|
|
|
android:name=".MainApplication"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
android:allowBackup="false"
|
2021-02-19 19:29:29 +01:00
|
|
|
android:requestLegacyExternalStorage="true"
|
2021-02-19 16:07:53 +01:00
|
|
|
android:theme="@style/AppTheme">
|
|
|
|
<activity
|
|
|
|
android:name=".MainActivity"
|
|
|
|
android:label="@string/app_name"
|
|
|
|
android:configChanges="keyboard|keyboardHidden|orientation|screenSize|uiMode"
|
|
|
|
android:launchMode="singleTask"
|
|
|
|
android:windowSoftInputMode="adjustResize">
|
|
|
|
<intent-filter>
|
|
|
|
<action android:name="android.intent.action.MAIN" />
|
|
|
|
<category android:name="android.intent.category.LAUNCHER" />
|
|
|
|
</intent-filter>
|
|
|
|
</activity>
|
|
|
|
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
|
|
|
|
</application>
|
|
|
|
|
|
|
|
</manifest>
|