Skip to content

Commit

Permalink
[Android/ImageViewer] Add missing FileProvider in android manifest (#…
Browse files Browse the repository at this point in the history
…4842)

Add missing FileProvider in android manifest

Fixes #4841
  • Loading branch information
issamux authored May 27, 2024
1 parent 0485f03 commit 7131b5b
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,11 @@
android:name="example.imageviewer.ImageViewerFileProvider"
android:authorities="example.imageviewer.fileprovider"
android:exported="false"
android:grantUriPermissions="true"></provider>
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/file_paths" />
</provider>

</application>
</manifest>

0 comments on commit 7131b5b

Please # to comment.