HixField
HixField

Reputation: 3776

Xcode 9.3 and Firebase Crashlytics not working

I cannot get Firebase Crashlytics to show my crashes of my Xcode iOS Swift app.

default 21:17:49.828801 +0200 nsurlsessiond [9 reports.crashlytics.com:443 stream, pid: 72896, traffic class: 200, tls, indefinite] cancelled [9.1 463924B9-A95E-44FB-AA19-CFE9616E37E0 192.168.99.209.59507<->54.243.248.96:443] Connected Path: satisfied (Path is satisfied), interface: en0 Duration: 2.586s, DNS @0.000s took 0.027s, TCP @0.028s took 0.110s, TLS took 0.255s bytes in/out: 6086/30045, packets in/out: 7/23, rtt: 0.092s, retransmitted packets: 0, out-of-order packets: 0

2018-04-16 21:55:35.270 uploadDSYM[77897:3132594] Fabric.framework/run 1.7.0 (208) 2018-04-16 21:55:35.278 uploadDSYM[77897:3132594] Firebase mode detected. 2018-04-16 21:55:35.278 uploadDSYM[77897:3132594] Using API Key: "xxxxxxxxxxxxxxxxxx" 2018-04-16 21:55:35.279 uploadDSYM[77897:3132594] Launched uploader in validation mode

Upvotes: 2

Views: 1980

Answers (1)

HixField
HixField

Reputation: 3776

Based on Todd's input (he is from Crashlytics) I found the issue. The reason was that the bundleid specified in the Firebase Console for the app was not the one that I was using in the actual app! So I deleted the old app (with the wrong bundle id) and re-created it with the correct bundleid in the Firebase Console and now its working.

Note: it is not possible to change the bundleid once the app is created apparently.

Upvotes: 1

Related Questions