com.google.android.gms.permission.AD_ID 从已发布的 Play 控制台应用程序中删除,但在我尝试声明 Play 控制台上没有广告时检测到

问题描述 投票:0回答:1

首先,我有一个应用程序经过广告验证,Playstore 上的数据信息声明广告

其次,我已经删除了导致不良匹配率的广告原因,因此我删除了 admob Ad_ID、程序包等的所有痕迹...我在 Playstore 上升级了我的应用程序,而不更改数据隐私。

应用程序验证后,我尝试更改数据隐私以删除广告信息。

问题...我有这个错误

Unable to send updates because some information about your app is incomplete
You must resolve the following issues before submitting your updates for review:
This version includes the com.google.android.gms.permission.AD_ID permission, but your declaration in Play Console indicates that your app does not use the advertising ID.

You must update your advertising identifier declaration.

但我在清单上没有跟踪 au com.google.android.gms.permission.AD_ID,没有包 extern,只是一个基本的免费游戏。

Playstore 强迫我对广告撒谎。我向 Playstore 团队发布了一些消息

这是回复

Thank you for contacting Google Play Developer Support.   

As part of Google Play services update in late 2021, the advertising ID will be removed when a user opts out of personalization using advertising ID in Android Settings. 

Please note that this Google Play services phased rollout will affect apps running on Android 12 starting late 2021 and will expand to affect apps running on all devices that support Google Play starting April 1, 2022. For essential non ads use-cases such as analytics and fraud prevention, use App Set ID.     

If your current release doesn't have this permission, you are still required to submit this form because our system detected that your app was using this permission in your existing release. You can just fill out the form and inform the review team that you do not have any permissions in your current release.    

Also, to deactivate the current APK, you need to release a new compliant app bundle or APK on the same track where the non-compliant version is located in order for the non-compliant APK to be deactivated. The new release will then supersede or overwrite the non-compliant APK on your app.   

In this case, please update your Sensitive permissions and APIs in your App Content section. After that, please try to release your new versions to their specific track. Please also note that you won’t be able to release a new update unless you fill out the com.google.android.gms.permission.AD_ID permission form.    

If your app update is still rejected after the new release, please contact the Policy team for further clarification regarding your app’s policy violation.    

This permission will be enforced starting from April 1, 2022 for all devices. See API documentation for more details.

You can refer to this help center for more information about the com.google.android.gms.permission.AD_ID permissions.    

I hope this information helps. Please let me know if you have any other questions or clarifications - I'd be happy to help.

Regards,
Red 
Google Play Developer Support

我不明白,我需要做什么。我看到的唯一解决方案是创建一个新应用程序或对广告撒谎,并在我的应用程序的 Playstore 页面上显示错误信息......

google-play google-play-console
1个回答
0
投票

一些 Google 库在内部使用 AD_ID。如果您不在应用程序中使用任何广告,您可以将其添加到您的清单中,警告将在您的下一个版本中消失。

<uses-permission android:name="com.google.android.gms.permission.AD_ID" tools:node="remove"/>
© www.soinside.com 2019 - 2024. All rights reserved.