xcarchive

How to include dSYM file of an embedded framework to an app archive

让人想犯罪 __ 提交于 2019-12-21 09:07:24
问题 My app uses some 3rd party framework. I have a framework itself and dSYM file for it. When archiving my app, the archive does not contain the dSYM file for this framework. It contains other dSYM files for ther frameworks that're included via Cocoa Pods and built alongside with my app. I'm using HockeyApp for app distribution, so I'm uploading my app IPA and dSYMs archive to it. But because of lacking of this exact dSYM for this exact framework, I can't see all stack trace in crash reports. So

Extracting .xcarchive files

烂漫一生 提交于 2019-12-11 12:34:34
问题 How do you (batch) extract the contents of many .xcarchive files? The story: I have a crash log from a semi-unknown build, this build would match a dSYM. I have lots of dSYMs from all the builds I have. I need to match the crash log versus the dSYM. The process is detailed here: https://stackoverflow.com/a/12337755/129202 I have many .xcarchive files with dSYMs, I need to extract the dsym files from the .xcarchive files before I can get their contents. Doing mdls *.dSYM while they are still

How to include dSYM file of an embedded framework to an app archive

六眼飞鱼酱① 提交于 2019-12-04 03:47:39
My app uses some 3rd party framework. I have a framework itself and dSYM file for it. When archiving my app, the archive does not contain the dSYM file for this framework. It contains other dSYM files for ther frameworks that're included via Cocoa Pods and built alongside with my app. I'm using HockeyApp for app distribution, so I'm uploading my app IPA and dSYMs archive to it. But because of lacking of this exact dSYM for this exact framework, I can't see all stack trace in crash reports. So The question: How can I kindly ask Xcode to copy dSYM file for the framework? Should I do this