blob: 97353e7df73b319958340524320195ef512435e0 [file] [log] [blame]
Tomasz Mikolajewskie29e3412016-02-24 12:53:44 +09001<?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>