App Development
Disable Crashlytics For Android App debug builds
Tip Of The Day: Crashlytics is an excellent app debugging and crash analysis tool. Sometimes we may want to disable crashlytics for debug builds which speeds up gradle builds. Setting ext.enableCrashlytics = false will disable sending a mapping file to crashlytics backend debug { ext.enableCrashlytics = false debuggable true Also Read more…