Just a quick Crashlytics question from Fabric.io:
To disable it during debugging, we should use:
Crashlytics crashlytics = new Crashlytics.Builder().disabled(BuildConfig.DEBUG).build(); Fabric.with(this, crashlytics);
Or Fabric handles the debug / release difference, and we should just use:
Fabric.with(this, new Crashlytics());
The disabled method is deprived, and if you use the Fabric plugin in Android Studio, it always changes the crashlytics instance to new Crashlytics() .
Tomcb source share