How to disable default Firebase crash reporting?

后端 未结 4 1578
自闭症患者
自闭症患者 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:40

    If you want to disable the Firebase Analytics Crash Reporting, use the below code inside app.gradle file.Hope this will help you.

    configurations 
    {
        all*.exclude group: 'com.google.firebase', module: 'firebase-crash'
    }
    

    Currently, google resolved this issue. If you got this issue in future you can try this above code.

提交回复
热议问题