aboutsummaryrefslogtreecommitdiff
path: root/androidApp/src/google/AndroidManifest.xml
diff options
context:
space:
mode:
Diffstat (limited to 'androidApp/src/google/AndroidManifest.xml')
-rw-r--r--androidApp/src/google/AndroidManifest.xml15
1 files changed, 14 insertions, 1 deletions
diff --git a/androidApp/src/google/AndroidManifest.xml b/androidApp/src/google/AndroidManifest.xml
index f7aea6c..ce72a8b 100644
--- a/androidApp/src/google/AndroidManifest.xml
+++ b/androidApp/src/google/AndroidManifest.xml
@@ -7,7 +7,10 @@
<application
android:name=".GoogleMainApplication"
tools:replace="android:name"
- tools:ignore="GoogleAppIndexingWarning">
+ tools:ignore="GoogleAppIndexingWarning"
+ android:allowBackup="false"
+ android:icon="@mipmap/ic_launcher"
+ android:fullBackupContent="false">
<meta-data
android:name="com.google.firebase.messaging.default_notification_channel_id"
@@ -23,6 +26,16 @@
</intent-filter>
</service>
+ <provider
+ android:authorities="${applicationId}.fileprovider"
+ android:name="androidx.core.content.FileProvider"
+ android:exported="false"
+ android:grantUriPermissions="true">
+ <meta-data
+ android:name="android.support.FILE_PROVIDER_PATHS"
+ android:resource="@xml/filepaths" />
+ </provider>
+
</application>
</manifest>