添加“管理外部存储"权限后,我无法将APK上传到Google Store

添加“管理外部存储

问题描述:

我在Google Play商店中有一个应用程序,我更新了代码以支持Android 11 OS,并且我已通过此权限使用了移动存储设备

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" />

当我尝试在Google Store上上传APK时,出现此问题

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

您的APK或Android应用程序捆绑包请求"android.permission.MANAGE_EXTERNAL_STORAGE"权限,而Google Play尚不支持该权限.

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

我该如何解决?

将api级别更改为小于30,因为由于covid-19,所有权限都已停止.此临时上传限制仅影响以Android 11(API级别30)为目标并请求所有文件访问权限的应用.

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.