This guarantees the retry/delete support in the downloads trampoline can do its thing. Allow APKs not in downloads to go directly to pakcage manager via VIEW intent. Add test coverage for retry dialog. Bug: 27539337 Change-Id: I75c5db8915e24a7648c7990136d39ed86d407637
27 lines
1014 B
XML
27 lines
1014 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
|
package="com.android.documentsui.tests">
|
|
|
|
<uses-permission android:name="android.permission.INTERNET" />
|
|
|
|
<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>
|