Android 3.1.1 - Failed resolution of: Lcom/google/android/gms/common/internal/zzbq;

前端 未结 10 2294
忘掉有多难
忘掉有多难 2020-11-28 15:02

since I\'ve updated to Android Studio 3.1, my project is not running anymore. I have searched for a solution all over the internet with no positive results. Here\'s the erro

10条回答
  •  野性不改
    2020-11-28 15:24

    I received the same error even with the 'zzbq;' at the end

    In app build.gradle I had to update my com.google.firebase:firebase-core to 16.0.1 to match the same line in the react-native-firebase build.gradle

    Example:

    app/build.gradle

    implementation 'com.google.firebase:firebase-core:16.0.1'
    

    react-native-firebase/android/build.gradle

    compileOnly "com.google.firebase:firebase-core:16.0.1"
    

提交回复
热议问题