1

我需要从我们的 Android 应用程序中删除 Firebase-Analytics,因为他们的安装引用接收器会阻止我的第三方应用程序跟踪安装。只允许一个。

有没有人遇到过这个问题?你会怎么做?

我试过这个,但是这个广播接收器/安装接收器存在

compile ('com.google.firebase:firebase-core:11.2.2'){
    exclude group: 'com.google.firebase', module: 'firebase-analytics'
}
4

2 回答 2

2

您可以使用清单合并规则删除接收者

<receiver android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" tools:node="remove"/>

但我不确定 Firebase 是否会欣赏。

于 2017-09-25T15:02:08.303 回答
0

把这个放在gradle中

configurations {
    all*.exclude group: 'com.google.firebase', module: 'firebase-core'
}
于 2017-09-22T15:11:14.517 回答