You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
967 B
24 lines
967 B
<?xml version="1.0" encoding="utf-8"?> |
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android" |
|
package="com.android.documentsui.perftests"> |
|
|
|
<application> |
|
<uses-library android:name="android.test.runner" /> |
|
<provider |
|
android:name="com.android.documentsui.StressProvider" |
|
android:authorities="com.android.documentsui.stressprovider" |
|
android:exported="true" |
|
android:grantUriPermissions="true" |
|
android:permission="android.permission.MANAGE_DOCUMENTS" |
|
android:enabled="true"> |
|
<intent-filter> |
|
<action android:name="android.content.action.DOCUMENTS_PROVIDER" /> |
|
</intent-filter> |
|
</provider> |
|
</application> |
|
|
|
<instrumentation android:name="android.test.InstrumentationTestRunner" |
|
android:targetPackage="com.android.documentsui" |
|
android:label="Performance tests for DocumentsUI" /> |
|
|
|
</manifest>
|
|
|