It will be used for testing as well as for development. Change-Id: I1556836e1070d9e4483d2574bba40aa2fdfde229
25 lines
946 B
XML
25 lines
946 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.documentsui.tests">
|
|
|
|
<application>
|
|
<uses-library android:name="android.test.runner" />
|
|
<provider
|
|
android:name="com.android.documentsui.StubProvider"
|
|
android:authorities="com.android.documentsui.stubprovider"
|
|
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="Tests for DocumentsUI" />
|
|
|
|
</manifest>
|