Crashlytics found an invalid API key - AndroidStudio build

前端 未结 9 1683
挽巷
挽巷 2020-12-09 14:39

I saw all other questions, but none of accepted answers is working for me.

By following integration steps found here https://dev.twitter.com/twitter-kit/android/int

相关标签:
9条回答
  • 2020-12-09 15:11

    Add the below line in app/build.gradle file

    apply plugin: 'com.google.gms.google-services'
    

    Clean The Project and Run.

    0 讨论(0)
  • 2020-12-09 15:13

    Changing the below dependency at project build.gradle from :

    classpath "com.google.gms:google-services:4.1.0"

    to

    classpath "com.google.gms:google-services:4.2.0"

    has solved the problem for me.

    0 讨论(0)
  • 2020-12-09 15:17

    If someone is using crashlytics with Android dynamic features module, make sure your fabric and google-services plugins are applied only in your app module. In my case that was the problem.

    0 讨论(0)
提交回复
热议问题