Fix:Android internal file paths using file provider

This commit is contained in:
advplyr
2023-06-19 15:09:12 -05:00
parent 0d1312e497
commit 13d32dc1f7
9 changed files with 58 additions and 36 deletions
+10
View File
@@ -92,6 +92,16 @@
<action android:name="android.media.browse.MediaBrowserService" />
</intent-filter>
</service>
<provider
android:name="androidx.core.content.FileProvider"
android:authorities="com.audiobookshelf.app.fileprovider"
android:grantUriPermissions="true"
android:exported="false">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>
</application>
</manifest>