crashlytics
Crashlytics: “We’re missing a dSYM to process crashes” [closed]
I ran into the same problem today. It seems that iTunes Connect is recompiling apps with bitcode so that the UUID changes, and the dSYM inside the .xcarchive can’t actually be used to symbolicate the app (this appears to be a new development). You can download the correct dSYM from iTunes Connect. Login, go to … Read more
Android ActivityThread.reportSizeConfigurations causes app to freeze with black screen and then crash
The crash is caused by the ANR on your Service, prior to the launch of your Activity. If a user launches your app during a long-running task in your Service, the Activity will not be created until the task on the service finishes. This waiting might look bizarre to the user launching your app, and … Read more
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”
Could not determine the dependencies of task ‘:app:crashlyticsStoreDeobsDebug’ if I enable the proguard
Full combo of build/ clean project + build/ rebuild project + file/ Invalidate caches / restart works for me!
Crashlytics is not sending Crash report from iPhone
Xcode debugger does NOT allow Crashlytics to process crash reports. Yeah, that seem weird even to me when I read that first time but it is a fact (Source). That’s is the reason we never see crash report When: – running app in Simulator – running app on iDevice by directly build and run from … Read more
How can I fix this CrashlyticsMissingDependencyException?
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.