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
We can use fabric's isDebuggable() method.
import static io.fabric.sdk.android.Fabric.isDebuggable; if(! isDebuggable()){ // set Crashlytics ... }
Happy coding :)