How to enable Firebase Crash Reporting - Android

后端 未结 6 1678
遥遥无期
遥遥无期 2020-12-11 01:27

I followed all the steps on the docs to use Firebase Crash Reporting in my Android app (I use Android Studio and everything is up-to-date).

I used their own code to t

6条回答
  •  醉话见心
    2020-12-11 02:11

    I had the same issue. Turns out I was missing dependency in my project gradle file. Try adding this. It should help.

    buildscript {
          repositories {
            jcenter()
            // ...
          }
    
          dependencies {
            // ...
            classpath 'com.google.firebase:firebase-plugins:1.0.5'
          }
        }
    

提交回复
热议问题