实施 firebase-analytics 和 play-service-analytics 后 Google Play 中出现广告警告

Mau*_*dez 2 android google-analytics ads gradle firebase

我需要 firebase-analytics 和 play-services-analytics 来记录 Firebase 事件并跟踪 INSTALL_REFERRER。添加依赖项后,我在 Google Play 中收到此警告:“我们在您的应用程序中发现了广告 SDK”,出现了 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"
}
Run Code Online (Sandbox Code Playgroud)

我的 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>
Run Code Online (Sandbox Code Playgroud)

干杯

Tyl*_*r V 5

通过从 gradle 文件的分析中排除以下三个模块,我能够摆脱该警告。你可能会认为谷歌能够更好地准确查询他们自己的图书馆......

implementation('com.google.firebase:firebase-analytics-ktx') {
    exclude module: "play-services-ads-identifier"
    exclude module: "play-services-measurement"
    exclude module: "play-services-measurement-sdk"
}
Run Code Online (Sandbox Code Playgroud)