google Analysics集成心得分享

google analysics官方使用教程Android 版 Google Analytics(分析)使用入门,如果你的项目中支持库使用的是androidx,那使用最新版本如下的依赖没有问题:
implementation 'com.google.firebase:firebase-analytics:17.2.0'
因为firebase-analysics从17开始就集成了androidx
如果你的项目支持库是support系列,那么有两种解决方案:
a.原项目升级androidx
b.降低firebase-analytics版本
方案a是推荐方案,使用最新的依赖库,项目上改动就有点大,不过确是根治方法,迁移到androidx请看AndroidX的迁移
方案b是保守方法,降低firebase-analytics版本
implementation 'com.google.firebase:firebase-analytics:16.0.9'
如果用的是16.0.4版本,本人在android 9.0上测试会闪退,16.0.9就没有问题

你可能感兴趣的:(google Analysics集成心得分享)