How to disable default Firebase crash reporting?

后端 未结 4 1471
自闭症患者
自闭症患者 2021-01-15 10:11

If I use apply plugin: \'com.google.gms.google-services\' in my build.gradle, Google says, The default configuration includes Firebase Analytics a

4条回答
  •  花落未央
    2021-01-15 10:35

    You need to remove compile com.google.android.gms:play-services:9.0.0 from your build dependencies and replace it with with the individual libraries that you need. A list of the Google Play libraries is provided here, the Firebase libraries are listed here.

    When you include play-services:9.x.x, you get all the Google Play and Firebase libraries, including Firebase Crash Reporting.

提交回复
热议问题