新 Google Play 隐私政策中的包可见性

Package Visibility in new Google Play Privacy Policy

我阅读了 this link 关于 Google Play 新隐私政策的信息。但我不明白。我可以在不向 AndroidManifest.xml 添加权限的情况下保留以下行并获取经过过滤的设备应用程序列表吗? 我可以保留此行而不向 AndroidManifest.xml 添加 QUERY_ALL_PACKAGES 权限并设置条件以在 android 十岁及以下的设备上安装应用程序吗?他们都没有在我的 Google Play 商店隐私政策中添加任何内容。

context.getPackageManager().getInstalledApplications(PackageManager.GET_META_DATA);

Can I keep the below line without adding permission to AndroidManifest.xml and get a filtered list of device applications?

您可以不加修改地保留该行。但是,getInstalledApplications() 不会 return 很多项目。它主要是 return 预安装的应用程序,而不是用户安装的应用程序。我不知道这是否符合您的“获取经过过滤的设备应用程序列表”。

And can I keep this line without adding QUERY_ALL_PACKAGES permission to AndroidManifest.xml and set the condition to get installed apps on the device for android ten and below?

我不知道这里的“设置条件”是什么意思。在 Android 10 及更低版本上,getInstalledApplications() 应该 return 所有已安装的应用程序。