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"> |
Paul Duffin | aa592fe | 2017-12-08 00:02:41 +0000 | [diff] [blame] | 8 | <uses-library android:name="android.test.runner" /> |
| 9 | |
Jeff Sharkey | 93de411 | 2013-10-31 11:25:31 -0700 | [diff] [blame] | 10 | <provider |
| 11 | android:name=".VaultProvider" |
| 12 | android:authorities="com.example.android.vault.provider" |
| 13 | android:exported="true" |
| 14 | android:grantUriPermissions="true" |
Jeff Sharkey | b4b28f8 | 2013-11-13 14:30:15 -0800 | [diff] [blame] | 15 | android:permission="android.permission.MANAGE_DOCUMENTS" |
| 16 | android:enabled="@bool/isAtLeastKitKat"> |
Jeff Sharkey | 93de411 | 2013-10-31 11:25:31 -0700 | [diff] [blame] | 17 | <intent-filter> |
| 18 | <action android:name="android.content.action.DOCUMENTS_PROVIDER" /> |
| 19 | </intent-filter> |
| 20 | </provider> |
| 21 | </application> |
| 22 | |
| 23 | </manifest> |