android - "Hidden due to privacy reasons"在 Google Play 控制台 'App Vitals' 中意味着什么?

标签 android google-play

Google 在 Play 控制台中推出了一个名为“App Vitals”的部分。在此部分下,开发人员可以查看诊断指标,例如应用程序持有的唤醒锁。

有一个名为“按唤醒锁标签”的选项卡,用于对标签持有的唤醒锁进行排序。我看到一些标签不可见的条目,而是看到标签“由于隐私原因隐藏”。这是什么意思?

最佳答案

您可能会看到_UNKNOWN文本,当应用程序启动WakeLock时,一个参数是tag,这是应用程序特定的字符串,Google已声明这些是敏感数据。 PowerManager示例代码

mWakeLock = mPowerManager.newWakeLock(PowerManager.PARTIAL_WAKE_LOCK, "my custom tag");
mWakeLock.acquire();
...
mWakeLock.release();

我的自定义标记 <- Google 的敏感数据。

来自帮助:

For privacy purposes, partial wake lock identification tags are anonymized

来自developer documentation :

Leave out any personally identifying information (PII) in the name, such as an email address. Otherwise, the device logs _UNKNOWN instead of the wake lock name.

关于android - "Hidden due to privacy reasons"在 Google Play 控制台 'App Vitals' 中意味着什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44106718/

相关文章:

Android 应用内更新 API 返回 0 作为 availableVersionCode & updateAvailability 作为 1 (UPDATE_NOT_AVAILABLE)

google-play - React Native : Violation of Usage of Android Advertising ID policy and section 4. 开发者分发协议(protocol)之8

android - Google 放置自动完成 API - REQUEST_DENIED

android - 图库一次滚动一张图片

java - 有没有一种方法可以同时使用布局宽度和高度的权重

android - ios 和 android 支付与 paypal 应用商店指南

android - 如何将 Google Play 开发者帐户转移到另一个 Google 帐户?

android - 以编程方式更改 VectorDrawable 中一条路径的颜色

android - Eclipse-Android-SDK : DDMS: File-Explorer doesn't open folder

android - 从 Google Play 取消发布应用后,应用内订阅会发生什么情况?