Is there any simple way to turn Crashlytics Android SDK off while developing ?
I don\'t want it to send a crash every time I do something stupid
On the othe
Use this in MyApplication#onCreate()
MyApplication#onCreate()
if (!BuildConfig.DEBUG) Crashlytics.start(this);
EDIT If you upgraded to Fabric, use this answer instead.