添加管理外部存储权限后,我无法将APK上传到谷歌商店

添加管理外部存储权限后,我无法将APK上传到谷歌商店

问题描述:

我在 Google Play 商店有一个应用程序,我更新了代码以支持 Android 11 操作系统,我正在通过此权限使用移动存储

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 商店上传 APK 时,出现此问题

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

您的 APK 或 Android App Bundle 请求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.