Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

After adding manage external storage permission, I can not upload APK to google store

Tags:

android

apk

I have an application on Google play store, I updated the code to support Android 11 OS, I'm using the storage of mobile by this permission

<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"
    tools:ignore="ScopedStorage" />

When I try to upload the APK on Google store, this problem appears

Your APK or Android App Bundle requests the 'android.permission.MANAGE_EXTERNAL_STORAGE' permission, which Google Play doesn't support yet.

How can I solve it?

like image 501
Ahmed Sa'eed Avatar asked Jan 25 '21 13:01

Ahmed Sa'eed


3 Answers

Change the api level to less than 30 because due to covid-19 all permission has stopped. This temporary uploading restriction only affects apps that both target Android 11 (API level 30) and request the All files access permission.

like image 88
Himesh Perera Avatar answered Sep 26 '22 02:09

Himesh Perera


https://support.google.com/googleplay/android-developer/answer/9956427?hl=en-GB

I think either remove the permission, or just wait for a while.

like image 28
Greg Avatar answered Sep 25 '22 02:09

Greg


Sounds like , the upload of apks that target OS 11 is temporarily blocked until early 2021 as described in this link , check it out :

https://support.google.com/googleplay/android-developer/answer/9956427?hl=en

like image 22
Taki Avatar answered Sep 23 '22 02:09

Taki