【发布时间】:2022-01-12 11:21:16
【问题描述】:
我需要 firebase-analytics 和 play-services-analytics 来记录 Firebase 事件和跟踪 INSTALL_REFERRER。添加依赖项后,我在 Google Play 中收到以下警告:“We found ad SDKs in your app”,出现了 3 次。
但是,我的应用没有显示任何类型的广告。
您知道如何避免广告警告吗?这就是我在应用级构建 gradle 文件中实现 Firebase 和 google play 库的方式:
//Firebase
implementation platform('com.google.firebase:firebase-bom:29.0.3') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
implementation ('com.google.firebase:firebase-crashlytics-ktx') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
implementation ('com.google.firebase:firebase-messaging-ktx') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
implementation ('com.google.firebase:firebase-analytics-ktx') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
implementation ('com.google.firebase:firebase-perf-ktx') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
//Google
implementation('com.google.android.gms:play-services-analytics:18.0.1') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
implementation('com.google.android.gms:play-services-auth:20.0.1') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
implementation('com.android.installreferrer:installreferrer:2.2') {
exclude module: "play-services-ads-identifier"
exclude module: "play-services-ads"
}
我的 Android 清单中也有这些行:
<meta-data
android:name="google_analytics_adid_collection_enabled"
android:value="false" />
<meta-data
android:name="firebase_analytics_collection_deactivated"
android:value="true" />
<receiver
android:name="com.google.android.gms.analytics.CampaignTrackingReceiver"
android:enabled="true"
android:exported="false">
<intent-filter>
<action android:name="com.android.vending.INSTALL_REFERRER" />
</intent-filter>
</receiver>
干杯
【问题讨论】:
标签: android firebase gradle google-analytics ads