diff options
author | rubenwardy <rw@rubenwardy.com> | 2022-06-05 17:42:09 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-05 17:42:09 +0100 |
commit | 4baf56520d61e22687b563d403f5d873251e135f (patch) | |
tree | 222fc895a63ac842866345d2fe216092f65134f2 /android/app/src/main/AndroidManifest.xml | |
parent | a69b7abe00fb818fd88f3cd04e7f9997ffd21072 (diff) | |
download | minetest-4baf56520d61e22687b563d403f5d873251e135f.tar.gz minetest-4baf56520d61e22687b563d403f5d873251e135f.tar.bz2 minetest-4baf56520d61e22687b563d403f5d873251e135f.zip |
Android: Add support for sharing debug.txt (#12370)
Diffstat (limited to 'android/app/src/main/AndroidManifest.xml')
-rw-r--r-- | android/app/src/main/AndroidManifest.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 6ea677cb9..11c868622 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -59,6 +59,17 @@ android:name=".UnzipService" android:enabled="true" android:exported="false" /> - </application> + + <provider + android:name="androidx.core.content.FileProvider" + android:authorities="net.minetest.minetest.fileprovider" + android:grantUriPermissions="true" + android:exported="false"> + <meta-data + android:name="android.support.FILE_PROVIDER_PATHS" + android:resource="@xml/filepaths" /> + </provider> + +</application> </manifest> |