我需要从我们的安卓应用程序中删除Firebase-Analytics,因为他们的安装推荐接收器阻止了我的第三方应用程序跟踪安装。只有一个是允许的。
有没有人面临过这个问题?你会怎么做?
我试过这个,但是这个广播接收器/安装接收器是存在的。
compile ('com.google.firebase:firebase-core:11.2.2'){
exclude group: 'com.google.firebase', module: 'firebase-analytics'
}发布于 2017-09-25 15:02:08
您可以使用报表合并规则删除接收方。
<receiver android:name="com.google.android.gms.measurement.AppMeasurementInstallReferrerReceiver" tools:node="remove"/>但我不确定Firebase会感激你。
发布于 2017-09-22 15:11:14
把这个放进秤里
configurations {
all*.exclude group: 'com.google.firebase', module: 'firebase-core'
}https://stackoverflow.com/questions/46366534
复制相似问题