Questions tagged [crashlytics]

a mobile service for building crash reporting for iOS and Android, part of Firebase

Crashlytics is a mobile service for building crash reporting for iOS and Android.

Crashlytics and Fabric are now owned by Google and can be used with Google's Firebase product.

Resources

Crashlytics homepage

Fabric homepage

Tutorial - Get started with Firebase Crashlytics

3012 questions
61
votes
3 answers

New Firebase Crashlytics disable in debug mode

I have recently switched to new Firebase Crashlytics from Fabric one and I can't find alternative for disabling Crashlytics in debug mode. Fabric: val crashlytics =…
martin1337
  • 2,384
  • 6
  • 38
  • 85
61
votes
5 answers

How to upload a mapping file to Firebase Crashlytics?

In the old Crash reporting - there is easy way to upload. i didn't find it in the Crashlytics section
itzhar
  • 12,743
  • 6
  • 56
  • 63
60
votes
5 answers

Crashlytics: "We're missing a dSYM to process crashes"

Crashlytics says "We're missing a dSYM to process crashes" and when I try to download dSYMs from Xcode (7.1), I get "there are no dsyms available for download"
Ashish Awaghad
  • 2,822
  • 3
  • 24
  • 33
58
votes
13 answers

Crashlytics file not found

Recently opened a project that I had compiled and submitted to Apple. I haven't touched it for a couple of months but I'm getting this odd compile error at: #import The error reads: 'Crashlytics/Crashlytics.h' file not…
Snowcrash
  • 80,579
  • 89
  • 266
  • 376
56
votes
6 answers

What is causing this Crashlytics compile warning? (Auto-Linking supplied '...' framework linker option at '...' is not a dylib)

Compiling my main target (not a test target like here) yields this error: ld: warning: Auto-Linking supplied '~/Documents/my_app/MyApp/Crashlytics.framework/Crashlytics', framework linker option at …
Robert
  • 37,670
  • 37
  • 171
  • 213
55
votes
12 answers

iOS and FirebaseCrashlytics

I am trying to follow the instructions on Firebase Docs to upload missing required dSYMs. However I am stuck on running the uploader script. In my build phases I have "${PODS_ROOT}/FirebaseCrashlytics/upload-symbols…
mobiledevcookie
  • 612
  • 1
  • 5
  • 7
54
votes
16 answers

Integrate Fabric/Crashlytics via CocoaPods

I try to integrate Fabric/Crashlytics via CocoaPods, my Podfile looks like this: pod 'Fabric/Core', '1.2' pod 'Fabric/Crashlytics', '1.2' But when I try to build my app, the build fails and I get a Shell Script Invocation Error that the run script…
swalkner
  • 16,679
  • 31
  • 123
  • 210
54
votes
6 answers

crashlytics developer tools error when building android -gradle project

I'm trying to build an android gradle project using eclipse, but i get this error when building the project using the command line: FAILURE: Build failed with an exception. * What went wrong: Execution failed for task…
user2469133
  • 1,940
  • 3
  • 21
  • 33
53
votes
5 answers

How to log non-fatal exceptions with Crashlytics

I started using Firebase (Crashlytics) in my project to track app crashes. It works perfectly with crashes but how can I log non-fatal crashes, i.e. caught exceptions. I tried Crashlytics.logException(e) but it doesn't work. I see no reports in the…
Egis
  • 5,081
  • 5
  • 39
  • 61
53
votes
4 answers

Google Fabric: UiAutomation not connected

After deployment of an app to Google Play Beta I see next issue in Crashlytics (6 - 7 users are affected) Fatal Exception: java.lang.IllegalStateException: UiAutomation not connected! at…
Vitalii
  • 10,091
  • 18
  • 83
  • 151
53
votes
10 answers

Send a log to Crashlytics without an app crash

How can I get Crashlytics to receive a log without my app crashing? I have the following code: if(!context.managedObjectContext save:&error) { CLS_LOG(@"%@",error.description) } When an error occurs, I want the Crashlytics server to receive the…
jack
  • 1,861
  • 4
  • 31
  • 52
52
votes
9 answers

Crashlytics found an invalid API key - AndroidStudio build

I saw all other questions, but none of accepted answers is working for me. By following integration steps found here https://dev.twitter.com/twitter-kit/android/integrate I have created crashlytics.properties file in module root. File is filled…
bajicdusko
  • 1,630
  • 1
  • 17
  • 32
51
votes
13 answers

Failed to retrieve settings from https://settings.crashlytics.com/spi/v2/platforms/android/apps/

I am trying out the new Firebase/Crashlytics setup and seem to run into a weird issue. I have one Android code base with multiple product flavors and each flavor is a separate individual app. all of these apps are registered in Fabric (from the…
Kenneth Browning
  • 1,360
  • 1
  • 13
  • 22
50
votes
12 answers

Error:Gradle: Execution failed for task ':app:crashlyticsCleanupResourcesDebug'. > Crashlytics Developer Tools error

I have this mainActivity public class MainActivity extends RoboFragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); Crashlytics.start(this); …
Elad Benda
  • 35,076
  • 87
  • 265
  • 471
48
votes
7 answers

Firebase Crashlytics setup on iOS?

I'm trying to integrate Firebase Crashlytics into iOS my app, which has Firebase Crash Reporting enabled. I've followed the documentation here, but my build always fails when running the custom build phase: "${PODS_ROOT}/Fabric/run" The error in…
Lucas P.
  • 4,282
  • 4
  • 29
  • 50