Перейти до основного вмісту

How to symbolicate crash logs in XCode organizer

If you have application distributed through Apple appstore or Testflight you should be able to get automatic crash reports by opening XCode/Window/Organizer menu, then select app and go to Crashes tab.

If crashes are not symbolicated you can symbolicate them manually by:
1. In organizer, call for context menu by pressing on crash log call stack section
2. Select "show in finder ..." menu item
3. Navigate up to ~/Library/Developer/Xcode/Products/[app bundle id]/[app version]/Crashes/Appstore/
4. Copy debug symbols there:

5. Go back to Organizer and select "Resymbolicate" context menu item on call stack area.


Now you should be able to see symbolicated log.
Works for me on XCode 10 and Testflight.

Коментарі

  1. This instruction is no longer valid. Just download dSYM file and let Spotlight indexing service find it.
    After a while crashlogs will be symbolicated.

    ВідповістиВидалити
  2. More at https://help.apple.com/xcode/mac/9.0/index.html?localePath=en.lproj#/dev5d9904b70

    ВідповістиВидалити

Дописати коментар

Популярні дописи з цього блогу

Home assistant - modbus - HHC-N8I8OP

Thanks to https://www.cncwiki.org/index.php?title=HHC-N8I8OP  I managed to connect this buggy module to home assistant using modbus integration: It is important to have verify delay big to not break logic.  modbus:   - type: tcp     host: 192.168.222.222     port: 5000     name: "modbus1"     switches:       - name: "hhc_r8"         address: 16         write_type: coil         verify:           delay: 36       - name: "hhc_r7"         address: 17         write_type: coil         verify:           delay: 37       - name: "hhc_r6"   ...

HomeAssistant gadinan camera rest commands pan and tilt

 Add following to restcommand.yaml and include in config.yaml:   # rest_command: ptz_control_right : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=1&tilt=0" method : PUT headers : Cookie : "cur_UserInfo=admin%3A123456; cur_userName=admin;" Content-Length : "0" ptz_control_left : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=-1&tilt=0" method : PUT headers : Cookie : "cur_UserInfo=admin%3A123456; cur_userName=admin;" Content-Length : "0" ptz_control_stop : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=0&tilt=0" method : PUT headers : Cookie : "cur_UserInfo=admin%3A123456; cur_userName=admin;" Content-Length : "0" ptz_control_up : url : "http://192.168.16.253/PSIA/YG/PTZCtrl/channels/0/continuous?pan=0&tilt=1" method : PUT headers : Cookie : "c...