diff options
author | Samuel Holland <samuel@sholland.org> | 2018-02-03 12:47:14 -0600 |
---|---|---|
committer | Samuel Holland <samuel@sholland.org> | 2018-02-03 12:47:14 -0600 |
commit | ba085e90d32681d437e2cd4d6ae188385d3e1445 (patch) | |
tree | 8be34f4f5695dff9a7c9fe3bcf75f97fd176b74c /app/src/main/AndroidManifest.xml | |
parent | 70a9e0d31b914c81b768a192315eae3de35e975d (diff) |
manifest: Add permission to read external storage
This fixes support for file managers that don't proxy the file access
from the file selection dialog through a content provider, and just
return a raw file:// URL. In this case, resolver.openInputStream() tries
to open the file directly, and fails with "Permission denied".
Signed-off-by: Samuel Holland <samuel@sholland.org>
Diffstat (limited to 'app/src/main/AndroidManifest.xml')
-rw-r--r-- | app/src/main/AndroidManifest.xml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/app/src/main/AndroidManifest.xml b/app/src/main/AndroidManifest.xml index 24eb7828..8104350f 100644 --- a/app/src/main/AndroidManifest.xml +++ b/app/src/main/AndroidManifest.xml @@ -5,6 +5,7 @@ android:installLocation="internalOnly"> <uses-permission android:name="android.permission.INTERNET" /> + <uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" /> <uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED" /> <application |