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
Another simple solution that I like, because it doesn't require different manifest files:
Step 1 - define manifest placeholders in build.gradle
android {
...
buildTypes {
release {
manifestPlaceholders = [crashlytics:"true"]
}
debug {
manifestPlaceholders = [crashlytics:"false"]
}
}
...
}
Step 2 - use them in your AndroidManifest.xml