Missing DYSM Error on multiple Target in Fabric and Objective C

前端 未结 2 846
执念已碎
执念已碎 2021-01-23 05:16

In my app there are two targets:

 Target 1 : MyApp - com.app.myapp
 Target 2 : MyAppQA  - com.app.myappQa

Email Id used for Fabric

2条回答
  •  悲哀的现实
    2021-01-23 06:07

    Mike from Fabric here.

    Once the dSYM is uploaded, we will start reprocessing any crashes from the last 7 days, so it should be visible by now.

    For uploading dSYMs, including seeing any errors with the upload flow, you can use the upload-symbols script located in the Fabric OS X app at Fabric.app/Contents/MacOS/upload-symbols and in the Fabric CocoaPod payload at $PODS_ROOT/Fabric/upload-symbols

    Run the script with the following to upload all dSYMs from a given folder:

    find  -name "*.dSYM" | xargs -I \{\} /path/to/upload-symbols -a  -p  \{\}
    

    Documentation reference.

提交回复
热议问题