Firebase Crash Reporting error: client application com.xxxx are blocked

前端 未结 3 1773
庸人自扰
庸人自扰 2021-02-05 11:42

I have implemented FCM and Firebase analytics with success in my project but I found an error trying with Firebase crash reporting and I don\'t have any idea what I\'m missing.<

3条回答
  •  挽巷
    挽巷 (楼主)
    2021-02-05 11:43

    I had similar problems and I tried dropping the gradle levels, which helped me because of some stability issues in the newest ones.

    to:

    compile 'com.google.firebase:firebase-core:9.2.1'
    compile 'com.google.firebase:firebase-messaging:9.2.1'
    compile 'com.google.firebase:firebase-crash:9.2.1'
    compile 'com.google.android.gms:play-services-maps:9.2.1'
    compile 'com.google.android.gms:play-services-location:9.2.1'
    compile 'com.google.android.gms:play-services-awareness:9.2.1'
    

    also you sdk to :

    compileSdkVersion 23
    buildToolsVersion "21.1.2"
    
    defaultConfig {
        applicationId "cloud.savari.example.com.fcm"
        minSdkVersion 17
        targetSdkVersion 23
        versionCode 1
        versionName "1.0"
    }
    

提交回复
热议问题