[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.
This commit is contained in:
Anders Jenbo 2021-11-14 23:36:05 +01:00 committed by Sam Lantinga
parent cc094f4d7c
commit b9c619017d
1 changed files with 2 additions and 2 deletions

View File

@ -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 -->