diff options
author | lookshe <github@lookshe.org> | 2016-03-27 14:41:25 +0200 |
---|---|---|
committer | lookshe <github@lookshe.org> | 2016-03-27 14:41:25 +0200 |
commit | 9773b16a98c946e42d39afccc6255e1f1f611aed (patch) | |
tree | 29cfd7da24995e853044d01e10a7f73e8c0f5e87 /src/main/AndroidManifest.xml | |
parent | 711ab9f2b1b625373a7046774c7b78e59f826589 (diff) |
Fixes FS#166 - Images cannot be opened since storing in private image folder
Diffstat (limited to 'src/main/AndroidManifest.xml')
-rw-r--r-- | src/main/AndroidManifest.xml | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/main/AndroidManifest.xml b/src/main/AndroidManifest.xml index 04f1bc33..ca369a5d 100644 --- a/src/main/AndroidManifest.xml +++ b/src/main/AndroidManifest.xml @@ -175,6 +175,15 @@ <action android:name="android.service.chooser.ChooserTargetService" /> </intent-filter> </service> + <provider + android:authorities="de.thedevstack.conversationsplus" + android:name=".providers.ConversationsPlusFileProvider" + android:exported="false" + android:grantUriPermissions="true"> + <meta-data + android:name="android.support.FILE_PROVIDER_PATHS" + android:resource="@xml/filepaths" /> + </provider> </application> </manifest> |