Declare MANAGE_EXTERNAL_STORAGE for free
Stephen Paul Weber
created
This allows users to optionally give the app ability to overwrite files even
from previous installs, etc.
Change summary
src/free/AndroidManifest.xml | 7 +++++++
1 file changed, 7 insertions(+)
Detailed changes
@@ -0,0 +1,7 @@
+<?xml version="1.0" encoding="utf-8"?>
+<manifest xmlns:android="http://schemas.android.com/apk/res/android"
+ xmlns:tools="http://schemas.android.com/tools">
+
+ <uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE" />
+
+</manifest>