新版Google Play隐私权政策中的程序包可见性 [英] Package Visibility in new Google Play Privacy Policy

查看:98
本文介绍了新版Google Play隐私权政策中的程序包可见性的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我阅读了关于Google的此链接播放新的隐私权政策.但是我不明白.是否可以在未添加AndroidManifest.xml权限的情况下保留以下行,并获得设备应用程序的过滤列表?是否可以在不向AndroidManifest.xml添加 QUERY_ALL_PACKAGES 权限并设置条件以在Android 10及以下版本的设备上获取安装的应用的情况下保留此行?两者都未在我的Google Play商店隐私权政策中添加任何内容.

I read this link about the Google play new privacy policy. But I don't understand. Can I keep the below line without adding permission to AndroidManifest.xml and get a filtered list of device applications? 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? Both of them without adding anything to my Google Play store Privacy policy.

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

推荐答案

是否可以在未添加AndroidManifest.xml权限的情况下保留以下行,并获得设备应用程序的过滤列表?

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

您可以保留该行而无需修改.但是, getInstalledApplications()不会返回很多项目.它将大部分返回预安装的应用程序,而不是用户安装的应用程序.我不知道这是否与您的获取过滤的设备应用程序列表"相符.

You can keep the line without modifications. However, getInstalledApplications() will not return many items. It will mostly return pre-installed applications, not user-installed applications. I do not know if that matches your "get a filtered list of device applications".

我可以在不向AndroidManifest.xml添加QUERY_ALL_PACKAGES权限的情况下保持这一行,并设置条件以在Android 10及以下版本的设备上获取已安装的应用程序吗?

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()应该返回所有已安装的应用程序.

I do not know what "set the condition" means here. On Android 10 and below, getInstalledApplications() should return all installed applications.

这篇关于新版Google Play隐私权政策中的程序包可见性的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆