Jeff Sharkey | 93de411 | 2013-10-31 11:25:31 -0700 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.example.android.vault"> |
| 4 | |
| 5 | <application |
| 6 | android:label="@string/app_label" |
| 7 | android:icon="@drawable/ic_lock_lock"> |
| 8 | <provider |
| 9 | android:name=".VaultProvider" |
| 10 | android:authorities="com.example.android.vault.provider" |
| 11 | android:exported="true" |
| 12 | android:grantUriPermissions="true" |
Jeff Sharkey | b4b28f8 | 2013-11-13 14:30:15 -0800 | [diff] [blame] | 13 | android:permission="android.permission.MANAGE_DOCUMENTS" |
| 14 | android:enabled="@bool/isAtLeastKitKat"> |
Jeff Sharkey | 93de411 | 2013-10-31 11:25:31 -0700 | [diff] [blame] | 15 | <intent-filter> |
| 16 | <action android:name="android.content.action.DOCUMENTS_PROVIDER" /> |
| 17 | </intent-filter> |
| 18 | </provider> |
| 19 | </application> |
| 20 | |
| 21 | </manifest> |