I am developing my own Swift infrastructure that will be used privately between my two applications. I use Carthage to manage this and other dependencies.
Finally, I mastered the platform and connected it to one of my applications, and it is not surprising that the application crashes in the new framework code.
I would like to debug the framework code. I looked through some articles that talk about:
- Copy dsym files and
- Compilation with debugging information.
Unfortunately, the articles do not provide much detail (and I'm not a very experienced iOS developer or Carthage user, so that they implicitly know them).
Can someone provide a recipe on how to configure the application so that the private code of the frame is not optimized, and I can enter the code of the framework from the hosting application?
Thanks Peter ...
source
share