Browse Source

[Android] Limit WRITE_EXTERNAL_STORAGE to SDK 22-

Direct access to the external storage is no longer allowed as of SDK 30. But on older version of Android you will still need WRITE_EXTERNAL_STORAGE in order to request the Download Manager to download files to your external file folder.
Anders Jenbo 3 years ago
parent
commit
b9c619017d
1 changed files with 2 additions and 2 deletions
  1. 2 2
      android-project/app/src/main/AndroidManifest.xml

+ 2 - 2
android-project/app/src/main/AndroidManifest.xml

@@ -38,8 +38,8 @@
         android:name="android.hardware.microphone"
         android:required="false" /> -->
 
-    <!-- Allow writing to external storage -->
-    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
+    <!-- Allow downloading to external storage -->
+    <uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" android:maxSdkVersion="22" />
     <!-- Allow access to Bluetooth devices -->
     <uses-permission android:name="android.permission.BLUETOOTH" />
     <!-- Allow access to the vibrator -->