-
Notifications
You must be signed in to change notification settings - Fork 297
Expand file tree
/
Copy pathAndroidManifest.xml
More file actions
34 lines (31 loc) · 1.11 KB
/
AndroidManifest.xml
File metadata and controls
34 lines (31 loc) · 1.11 KB
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
26
27
28
29
30
31
32
33
34
<manifest package="pl.aprilapps.easypicker"
xmlns:android="http://schemas.android.com/apk/res/android">
<queries>
<intent>
<action android:name="android.media.action.IMAGE_CAPTURE" />
</intent>
<intent>
<action android:name="android.intent.action.VIEW" />
</intent>
<intent>
<action android:name="android.intent.action.PICK" />
</intent>
<intent>
<action android:name="android.media.action.VIDEO_CAPTURE" />
</intent>
<intent>
<action android:name="android.intent.action.GET_CONTENT" />
</intent>
</queries>
<application>
<provider
android:name="pl.aprilapps.easypicker.EasyFileProvider"
android:authorities="${applicationId}.easypicker.fileprovider"
android:exported="false"
android:grantUriPermissions="true">
<meta-data
android:name="android.support.FILE_PROVIDER_PATHS"
android:resource="@xml/easypicker_filepaths" />
</provider>
</application>
</manifest>