diff options
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index e29bce6..e2ec0fc 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml | |||
@@ -85,6 +85,20 @@ | |||
85 | </intent-filter> | 85 | </intent-filter> |
86 | </service> | 86 | </service> |
87 | 87 | ||
88 | <provider | ||
89 | android:name="org.pacien.tincapp.storageprovider.FilesDocumentsProvider" | ||
90 | android:authorities="org.pacien.tincapp.files" | ||
91 | android:exported="true" | ||
92 | android:grantUriPermissions="true" | ||
93 | android:permission="android.permission.MANAGE_DOCUMENTS"> | ||
94 | <intent-filter> | ||
95 | <action android:name="android.content.action.DOCUMENTS_PROVIDER" /> | ||
96 | </intent-filter> | ||
97 | <meta-data | ||
98 | android:name="android.support.FILE_PROVIDER_PATHS" | ||
99 | android:resource="@xml/file_paths" /> | ||
100 | </provider> | ||
101 | |||
88 | </application> | 102 | </application> |
89 | 103 | ||
90 | </manifest> | 104 | </manifest> |