How to view crash from iTunes Connect in Xcode?

I have an application that works with React-Native that does not crash on react-native run-ios, nor when I run it on Xcode, but when I download it to iTunes Connect, the assembly fails due to a failure. The problem is that I do not see a failure on Xcode > Window > Organizer > Crashes, because I cannot make it a failure using a device or a simulator. Does anyone know how to import an alarm from iTunes Connect in Xcode?

Here is my crash log:

{"app_name":"mdef","timestamp":"2017-12-11 11:40:02.33 -0800","app_version":"1.2.0","slice_uuid":"3ff1d45d-3b65-325e-8df9-5b0ccf7550b7","adam_id":1246228626,"build_version":"66","bundleID":"com.mdef.mymatchup","share_with_app_devs":false,"is_first_party":false,"bug_type":"109","os_version":"iPhone OS 11.2 (15C114)","incident_id":"A6BCA3E0-DBB1-4E24-82F1-7B418F023CB0","name":"mdef"}
Incident Identifier: A6BCA3E0-DBB1-4E24-82F1-7B418F023CB0
CrashReporter Key:   972854c2d639e93f8277daa382921f72f9e8d379
Hardware Model:      xxx1
Process:             mdef [12142]
Path:                /private/var/containers/Bundle/Application/07E05B5A-9B60-4A2E-BE1B-895E72344FC5/mdef.app/mdef
Identifier:          com.mdef.mymatchup
Version:             66 (1.2.0)
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.mdef.mymatchup [5622]


Date/Time:           2017-12-11 11:40:02.1820 -0800
Launch Time:         2017-12-11 11:40:01.1784 -0800
OS Version:          iPhone OS 11.2 (15C114)
Baseband Version:    n/a
Report Version:      104

Exception Type:  EXC_CRASH (SIGABRT)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Triggered by Thread:  1

Application Specific Information:
abort() called

Filtered syslog:
None found

Last Exception Backtrace:
(0x185cbe364 0x184f04528 0x185cbe2ac 0x104a8ff40 0x104a8dc04 0x185cc5cd0 0x185ba456c 0x185ba901c 0x104aa10b8 0x104ae0dd8 0x104ae0b38 0x18563aa54 0x18563aa14 0x18564496c 0x1856452fc 0x185645d20 0x18564e03c 0x1858e2f1c 0x1858e2b6c)
+4
source share
3 answers

Solved! I fixed my problem by dropping React-Native from 0.51.0 to 0.49.5 and I no longer have crashes.

0
source

, .

, - . , . , Xcode, App .

, , , , . , - , Xcode → Organizer.

:

  • , Apple .
  • , .
  • , . .

crashlytics: https://fabric.io/kits/ios/crashlytics

, .

...

+1

, Crashlytics. , , Crashlytics .

, Crashlytics .

Or you can see the crash manually using the Xcode organizer. read this to learn more about checking crash reports from Xcode.

+1
source

Source: https://habr.com/ru/post/1690677/


All Articles