alo*_*loj 191 android google-play google-advertising-id google-play-console
我刚从Google Play收到此消息,但我没有收集广告ID.
警告原因:违反Android广告ID政策的使用和开发者分发协议的第4.8节
Google Play要求开发者在应用请求或处理敏感用户或设备信息时提供有效的隐私权政策.我们发现您的应用会收集并传输Android广告ID,但需遵守隐私政策要求.
是否有可能我的任何依赖使用它?这是依赖项列表:
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation "org.jetbrains.anko:anko-common:$anko_version"
implementation ("com.android.support:appcompat-v7:$android_support_version") {
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
}
implementation ("com.android.support:design:$android_support_version") {
exclude group: 'com.android.support', module: 'animated-vector-drawable'
}
implementation ("com.android.support:cardview-v7:$android_support_version") {
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
}
implementation 'com.github.PhilJay:MPAndroidChart:v3.0.2'
implementation 'com.github.apl-devs:appintro:v4.2.3'
implementation('com.crashlytics.sdk.android:crashlytics:2.6.8@aar') {
transitive = true
}
implementation 'com.firebase:firebase-jobdispatcher:0.7.0'
implementation ("com.google.firebase:firebase-firestore:$firestore_version") {
exclude group: 'com.google.firebase', module: 'firebase-auth'
}
implementation ("com.google.firebase:firebase-auth:$firebase_version") {
exclude group: 'com.google.firebase', module: 'firebase-firestore'
}
implementation ("com.google.firebase:firebase-storage:$firebase_version") {
exclude group: 'com.google.firebase', module: 'firebase-firestore'
}
implementation ('com.google.android.gms:play-services-auth:16.0.0') {
exclude group: 'com.google.firebase', module: 'firebase-firestore'
}
implementation 'com.android.support.constraint:constraint-layout:1.1.3'
implementation 'com.android.support:multidex:1.0.3'
implementation ("com.android.support:exifinterface:$android_support_version") {
exclude group: 'com.android.support', module: 'animated-vector-drawable'
exclude group: 'com.android.support', module: 'design'
}
implementation 'com.soundcloud.android:android-crop:1.0.1@aar'
implementation 'com.github.bumptech.glide:glide:4.7.1'
Run Code Online (Sandbox Code Playgroud)
ric*_*fox 71
根据Firebase文档,您可以通过设置以下内容来禁用广告ID集合:
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
Run Code Online (Sandbox Code Playgroud)
在你AndroidManifest.xml
的<Application>
标签下.
编辑:似乎人们在这种方法上取得了成功.请尝试configurations { all*.exclude group: 'com.google.firebase', module: 'firebase-core' all*.exclude group: 'com.google.firebase', module: 'firebase-iid' }
按照以下评论添加
到Gradle应用依赖项区域.
Maf*_*jul 59
今天许多开发人员都遇到了同样的问题.我也遇到了这个问题.我没有收集任何敏感数据,我甚至没有向我的用户展示广告.在你的情况下,Crashlytics lib可能是一个问题.它处理广告ID.在邮件中,他们提到了所需的操作:
需要采取的措施:为您的商品详情和应用添加隐私权政策
所以我认为我们所有人都应该在商店列表和应用程序上添加隐私政策.在采取行动之前,我们应该通过相关的隐私政策.以下是您可以获得帮助的链接:
Rik*_*zen 21
您正在使用低于2.9.3的崩解剂.显然它正在收集并发送Google广告ID作为其标题中的密钥.这可能是问题之一.您可以检查它是否通过像Charles这样的代理发送广告ID.
编辑***似乎2.9.3及更高版本仍然通过AdvertisingIdClient.getAdvertisingIdInfo()
从com.google.android.gms.ads.identifier
包中调用来获取adsID.我通过在方法上设置断点来检查它.我假设它仍然以某种方式发送到织物.这意味着更新到更高版本将无法解决它..
Qua*_*ran 18
对于Unity用户,问题出在Unity Analytics中.
要解决此问题,我们需要执行2个任务:
重新提交大约几分钟后,Google Play批准了我的应用.
Imr*_*ran 17
我没有使用Crashlytics或任何其他东西.只是一个简单的Facebook广告离线应用程序.我的应用程序仍然从Play商店中删除.
问题:违反Android广告ID政策的使用和开发者分发协议的第4.8节
问题描述: Google Play要求开发者在应用请求或处理敏感用户或设备信息时提供有效的隐私权政策.我们已确定您的应用收集并传输Android广告标识符,该标识符符合隐私权政策要求.如果您的应用收集了Android广告ID,则必须在Play控制台的指定字段和应用内提供有效的隐私权政策.
解:
我使用此链接为我的应用创建了隐私政策,并根据我的应用进行了编辑.
登录Google Play控制台并转到商店状态,然后存储商家信息并将您的网址粘贴到隐私权政策部分.
提交您的更新.
注意 -在我的情况下,我没有提交任何带有隐私政策的新版本,如邮件中所述,我的应用程序在播放商店中可见,我在几小时内完成了上面提到的步骤.如果您的应用在遵循上述要点后在Play商店中不可见,那么您应该在您的应用中放置一个隐私政策部分并提交新版本.
Gam*_*ama 14
我也收到了同样的消息,今天暂停了我的一些应用程序.
所以我刚刚删除了这三个firebase依赖项:
compile 'com.google.firebase:firebase-core:10.0.1'
compile 'com.google.firebase:firebase-ads:10.0.1'
compile 'com.google.firebase:firebase-appindexing:10.0.1'
Run Code Online (Sandbox Code Playgroud)
然后,我重新提交了应用程序,他们在审核后被接受:)
这就是Google Play Services 4.0版引入新API和广告和分析提供商使用的ID的原因.我们需要提供隐私声明并在网上提供.如需样本,请访问 https://digital.com/blog/best-privacy-policy-generators/
更改Android应用程序的设置.开发者控制台,商店列表,向下滚动到隐私政策.在这里添加网址.
请与政策支持小组联系。
您可以按照以下步骤将隐私权政策添加到您的商品详情中:
登录到您的Play控制台。
选择您的应用。
在左侧,选择商店状态>商店列表。
在“隐私权政策”下,输入您在线托管隐私权政策的URL。
保存更改以将更新提交到您的应用。
请访问我们的帮助中心,以获取有关Google Play隐私权政策要求的更多信息。
如果您的应用使用Firebase SDK(如分析等),则可以Advertising ID
通过AndroidManifest.xml
在Application
标记下的文件中添加以下行来禁用 SDK级别的收集.
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
你可以在这里阅读更多相关信息.
我的应用程序甚至不是广告支持的应用程序,但仍受到此section 4.8
条款的影响.通过采用上述技术,我可以在不提交任何隐私政策的情况下将其恢复到Google Play上.
禁用广告ID收集:
https://firebase.google.com/support/guides/disable-analytics#disable_advertising_id_collection
通过清单文件中的这两行:
<meta-data android:name="firebase_analytics_collection_deactivated" android:value="true" />
<meta-data android:name="google_analytics_adid_collection_enabled" android:value="false" />
Run Code Online (Sandbox Code Playgroud)
归档时间: |
|
查看次数: |
40674 次 |
最近记录: |