summaryrefslogtreecommitdiff
path: root/AndroidManifest.xml
diff options
context:
space:
mode:
authorJeff Sharkey <jsharkey@android.com>2019-03-28 14:55:14 -0600
committerJeff Sharkey <jsharkey@google.com>2019-03-29 18:12:15 +0000
commit1c76305b5a7260cd368adff4fee06195f2af2457 (patch)
treec58c05c0c57615d914cddddac0c93e0b15bca397 /AndroidManifest.xml
parent85b45df43e342d187c9411fde452bfe2f660cff9 (diff)
downloadHTMLViewer-1c76305b5a7260cd368adff4fee06195f2af2457.tar.gz
Remove support for file:// items.
We've messaged since the N release that file:// Uris are going away, and we've been crashing those apps via StrictMode for many years. The broader storage changes in Q mean it's finally a good time to say we only handle content:// items. Bug: 129375805 Test: manual Exempted-From-Owner-Approval: storage refactoring Change-Id: I89b08591523153a80374bd444b2855ecfc04936b
Diffstat (limited to 'AndroidManifest.xml')
-rw-r--r--AndroidManifest.xml3
1 files changed, 0 insertions, 3 deletions
diff --git a/AndroidManifest.xml b/AndroidManifest.xml
index f0fbb1a..660c625 100644
--- a/AndroidManifest.xml
+++ b/AndroidManifest.xml
@@ -21,8 +21,6 @@
package="com.android.htmlviewer">
<original-package android:name="com.android.htmlviewer" />
- <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
-
<application android:label="@string/app_label"
android:supportsRtl="true">
<activity android:name="HTMLViewerActivity"
@@ -31,7 +29,6 @@
<intent-filter>
<category android:name="android.intent.category.DEFAULT" />
<action android:name="android.intent.action.VIEW" />
- <data android:scheme="file" />
<data android:scheme="content" />
<data android:mimeType="text/html"/>
<data android:mimeType="text/plain"/>