diff options
Diffstat (limited to 'androidApp/src')
-rw-r--r-- | androidApp/src/google/AndroidManifest.xml | 10 | ||||
-rw-r--r-- | androidApp/src/main/AndroidManifest.xml | 11 |
2 files changed, 11 insertions, 10 deletions
diff --git a/androidApp/src/google/AndroidManifest.xml b/androidApp/src/google/AndroidManifest.xml index ce72a8b..5207ee9 100644 --- a/androidApp/src/google/AndroidManifest.xml +++ b/androidApp/src/google/AndroidManifest.xml @@ -26,16 +26,6 @@ </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> diff --git a/androidApp/src/main/AndroidManifest.xml b/androidApp/src/main/AndroidManifest.xml index 23e24bc..313a4df 100644 --- a/androidApp/src/main/AndroidManifest.xml +++ b/androidApp/src/main/AndroidManifest.xml @@ -30,5 +30,16 @@ <activity android:name=".session.UserInformationActivity" android:exported="false"/> + + <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>
\ No newline at end of file |