I am facing isssue with Crashlytics. Not sure what I am doing wrong. I have two buildTypes release and debug as below. Gradle file:
apply plugin: \'com.androi
I was able to find out why it wasn't working. I missed this point while adding Fabric:
"Make sure the Fabric.with() line is after all other 3rd-party SDKs that set an UncaughtExceptionHandler"
I had few uncaught exception handlers after I had initialised Fabric. But what I didn't understand is why it worked for debug and not release. If it had to fail, it should have failed for both release and debug as well.
It did fix my issue, but would like to know why that could have happened.
Thanks all for your help. Appreciate it.