Crashlytics in iOS won’t proceed past “Build Your Project” in Fabric app
Go into Build settings of the your target. Find “Debug Information Format”. Set this from “DWARF” in both debug and release to “DWARF with dSYM File”
Go into Build settings of the your target. Find “Debug Information Format”. Set this from “DWARF” in both debug and release to “DWARF with dSYM File”
Launch the Fabric plugin in Android studio. After loading it, hit Ctrl+L and It will make you log out.
I have added the following codes before I actually installed Fabric/Crashlytics: debug { ext.enableCrashlytics = false } Removing it before the first run with Crashlytics solved the problem. The problem no longer occurs after the first run.
The below solution worked for me. Go to build setting of your project, then Search for debug information format in build setting and search for “Debug information format” then set “Debug information format” to “DWARF with dSYM file” and make sure Generate debug symbol in build setting is set to Yes.
I found the solution from Crashlytics (with Fabric integration) Put following code inside your Application class onCreate() Crashlytics crashlytics = new Crashlytics.Builder().disabled(BuildConfig.DEBUG).build(); Fabric.with(this, crashlytics); EDIT: In Crashalitics 2.3 and above, this is deprecated. The correct code is: CrashlyticsCore core = new CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build(); Fabric.with(this, new Crashlytics.Builder().core(core).build()); or Fabric.with(this, new Crashlytics.Builder().core(new CrashlyticsCore.Builder().disabled(BuildConfig.DEBUG).build()).build()); (copied from Crashlytics deprecated method … Read more