How can I fix this CrashlyticsMissingDependencyException?

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

    The issue also occurs if you accidentally include the Crashlytics BuildConfig - very easy to do with Android Studio/IntelliJ auto-imports.

    I'd imported

    import com.crashlytics.android.core.BuildConfig;

    Instead of my own

    import .BuildConfig;

提交回复
热议问题