有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

清单Google Play控制台中的java Requestlegacyexternalstorage权限5五月消息

我在我的开发者控制台上收到了来自谷歌的消息

Starting 5 May, you must let us know why your app requires broad storage access

We've detected that your app contains the requestLegacyExternalStorage flag in the manifest file of one or more of your app bundles or APKs. Developers with apps on devices running Android 11+ must use scoped storage to give users better access control over their device storage. To release your app on Android 11 or newer after 5 May, you must either:

  • Update your app to use more privacy-friendly best practices, such as the storage access framework or Media Store API
  • Update your app to declare the All files access (MANAGE_EXTERNAL_STORAGE) permission in the manifest file, and complete the All files access permission declaration in Play Console from 5 May
  • Remove the All files access permission from your app entirely

For apps targeting Android 11, the requestLegacyExternalStorage flag will be ignored. You must use the All files access permission to retain broad access. Apps requesting access to the All files access permission without a permitted use will be removed from Google Play, and you won't be able to publish updates.

我们应该做些什么来遵守这项政策?如果我们不在APK中进行任何修改,会发生什么

我的应用程序的TargetSDK是29。这不是问题吗?如果我不做任何修改,我的应用程序会从Google Play中删除吗

谷歌怎么说

a)“如果你的应用目标为29或更低,没有问题。你不必进行任何修改,你可以继续使用requestlegacyexternalstorage。对我们来说,如果你的应用目标为30(Android 11),这一点很重要。如果您的应用目标为29或更低,则即使您不在清单中进行任何更改,您的应用也将处于活动状态,但如果您希望目标为30,则必须将其删除(并使用其他方法获取用户权限)

b)“即使你的应用目标为29或更低,你也必须更改清单。从清单中删除requestLegacyExternalStorage,否则我们将从Google Play中删除你的应用。”

哪一个是正确的?谷歌怎么说?a还是b

如果b是正确的,我该怎么办?我对gallery中的图像使用此权限,而不是对所有文件使用此权限


共 (1) 个答案

  1. # 1 楼答案

    为了尽可能清楚地说明,如果您针对目标sdk版本的API 29,您现在不需要做任何事情,但您必须在8月至11月完成,这是更改应用程序中此权限的最后期限,因为针对sdk 30也是强制性的,现在,如果不想立即更改sdk和存储权限,请在清单文件中保留requestLegacyExternalStorageflag=true

    所有应用程序的硬截止日期是8月至11月,因为所有应用程序都必须有targetSDK=30,与此相关,Android SDK 30上有一个change in the privacy policy强制更改此权限,这就是为什么现在只是一个警告。但是,如果你现在什么都不做,你的应用程序将不会发生任何变化,直到8月到11月