Tomasz Mikolajewski | e29e341 | 2016-02-24 12:53:44 +0900 | [diff] [blame] | 1 | <?xml version="1.0" encoding="utf-8"?> |
| 2 | <manifest xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | package="com.android.documentsui.perftests"> |
| 4 | |
| 5 | <application> |
| 6 | <uses-library android:name="android.test.runner" /> |
| 7 | <provider |
| 8 | android:name="com.android.documentsui.StressProvider" |
| 9 | android:authorities="com.android.documentsui.stressprovider" |
| 10 | android:exported="true" |
| 11 | android:grantUriPermissions="true" |
| 12 | android:permission="android.permission.MANAGE_DOCUMENTS" |
| 13 | android:enabled="true"> |
| 14 | <intent-filter> |
| 15 | <action android:name="android.content.action.DOCUMENTS_PROVIDER" /> |
| 16 | </intent-filter> |
| 17 | </provider> |
| 18 | </application> |
| 19 | |
| 20 | <instrumentation android:name="android.test.InstrumentationTestRunner" |
| 21 | android:targetPackage="com.android.documentsui" |
| 22 | android:label="Performance tests for DocumentsUI" /> |
| 23 | |
| 24 | </manifest> |