I have recently switched to new Firebase Crashlytics from Fabric one and I can't find alternative for disabling Crashlytics in debug mode.
Fabric:
val crashlytics = Crashlytics.Builder().core(CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build()).build()
Fabric.with(this, crashlytics, Answers())
Anyone know answer? Ive seen that FirebaseCrashlytics
class has its core set up internally now. I've tried FirebaseCrashlytics(CrashlyticsCore.??).getInstance()
, but that kind of constructor is not working.
Also CrashlyticsCore
class no longer has .Builder()
available