forked from crazecoder/open_file
-
Notifications
You must be signed in to change notification settings - Fork 155
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
25 lines (22 loc) · 1008 Bytes
/
AndroidManifest.xml
File metadata and controls
25 lines (22 loc) · 1008 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<uses-permission
android:name="android.permission.READ_EXTERNAL_STORAGE"
android:maxSdkVersion="32" />
<uses-permission android:name="android.permission.READ_MEDIA_IMAGES" />
<uses-permission android:name="android.permission.READ_MEDIA_VIDEO" />
<uses-permission android:name="android.permission.READ_MEDIA_AUDIO" />
<application>
<provider
android:name="com.crazecoder.openfile.FileProvider"
android:authorities="${applicationId}.fileProvider.com.crazecoder.openfile"
android:exported="false"
android:grantUriPermissions="true"
tools:replace="android:authorities">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/filepaths"
/>
</provider>
</application>
</manifest>