How can I fix this CrashlyticsMissingDependencyException?

后端 未结 17 1624
耶瑟儿~
耶瑟儿~ 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:13

    Check if crashlytics is disabled in build.gradle file

        debug {
            ext.enableCrashlytics = false
        }
    

    Instead use

        debug {
            ext.enableCrashlytics = true
        }
    

提交回复
热议问题