How can I fix this CrashlyticsMissingDependencyException?

后端 未结 17 1592
耶瑟儿~
耶瑟儿~ 2020-12-04 18:42

I have been using the latest Crashlytics (Fabric integration) for a while. But recently I encountered the following crash error due to missing dependency although I didn\'t

17条回答
  •  [愿得一人]
    2020-12-04 19:27

    In case this helps someone else, I had a similar issue when upgrading Crashlytics to Fabric. In my case, the plugin left 2 lines from Crashlytics that I needed to manually remove before it would work.

    In the gradle file, under buildscript dependencies, I had to manually remove:

    classpath 'com.crashlytics.tools.gradle:crashlytics-gradle:1.16.0'
    

    Also, under dependencies, I had to manually remove:

    compile 'com.crashlytics.android:crashlytics:1.1.13'
    

提交回复
热议问题