|
|
|
|
@@ -1,4 +1,6 @@
|
|
|
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
<manifest
|
|
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
xmlns:tools="http://schemas.android.com/tools">
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_COARSE_LOCATION"/>
|
|
|
|
|
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION"/>
|
|
|
|
|
<uses-permission android:name="android.permission.CAMERA"/>
|
|
|
|
|
@@ -15,13 +17,36 @@
|
|
|
|
|
<data android:scheme="https"/>
|
|
|
|
|
</intent>
|
|
|
|
|
</queries>
|
|
|
|
|
<application android:name=".MainApplication" android:label="@string/app_name" android:icon="@mipmap/ic_launcher" android:roundIcon="@mipmap/ic_launcher_round" android:allowBackup="true" android:theme="@style/AppTheme" android:supportsRtl="true" android:enableOnBackInvokedCallback="false" android:fullBackupContent="@xml/secure_store_backup_rules" android:dataExtractionRules="@xml/secure_store_data_extraction_rules">
|
|
|
|
|
<meta-data android:name="com.google.firebase.messaging.default_notification_color" android:resource="@color/notification_icon_color"/>
|
|
|
|
|
<meta-data android:name="com.google.firebase.messaging.default_notification_icon" android:resource="@drawable/notification_icon"/>
|
|
|
|
|
<meta-data android:name="expo.modules.notifications.default_notification_color" android:resource="@color/notification_icon_color"/>
|
|
|
|
|
<meta-data android:name="expo.modules.notifications.default_notification_icon" android:resource="@drawable/notification_icon"/>
|
|
|
|
|
<meta-data android:name="expo.modules.updates.ENABLED" android:value="false"/>
|
|
|
|
|
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH" android:value="ALWAYS"/>
|
|
|
|
|
<application
|
|
|
|
|
android:name=".MainApplication"
|
|
|
|
|
android:label="@string/app_name"
|
|
|
|
|
android:icon="@mipmap/ic_launcher"
|
|
|
|
|
android:roundIcon="@mipmap/ic_launcher_round"
|
|
|
|
|
android:allowBackup="true"
|
|
|
|
|
android:theme="@style/AppTheme"
|
|
|
|
|
android:supportsRtl="true"
|
|
|
|
|
android:enableOnBackInvokedCallback="false"
|
|
|
|
|
android:fullBackupContent="@xml/secure_store_backup_rules"
|
|
|
|
|
android:dataExtractionRules="@xml/secure_store_data_extraction_rules">
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_color"
|
|
|
|
|
android:resource="@color/notification_icon_color"
|
|
|
|
|
tools:replace="android:resource"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="com.google.firebase.messaging.default_notification_icon"
|
|
|
|
|
android:resource="@drawable/notification_icon"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="expo.modules.notifications.default_notification_color"
|
|
|
|
|
android:resource="@color/notification_icon_color"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="expo.modules.notifications.default_notification_icon"
|
|
|
|
|
android:resource="@drawable/notification_icon"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="expo.modules.updates.ENABLED"
|
|
|
|
|
android:value="false"/>
|
|
|
|
|
<meta-data
|
|
|
|
|
android:name="expo.modules.updates.EXPO_UPDATES_CHECK_ON_LAUNCH"
|
|
|
|
|
android:value="ALWAYS"/>
|
|
|
|
|
<meta-data android:name="expo.modules.updates.EXPO_UPDATES_LAUNCH_WAIT_MS" android:value="0"/>
|
|
|
|
|
<activity android:name=".MainActivity" android:configChanges="keyboard|keyboardHidden|orientation|screenSize|screenLayout|uiMode" android:launchMode="singleTask" android:windowSoftInputMode="adjustResize" android:theme="@style/Theme.App.SplashScreen" android:exported="true" android:screenOrientation="portrait">
|
|
|
|
|
<intent-filter>
|
|
|
|
|
|