Xcode framework dsyms different scenarios explanation

Hi!

I have a dynamic framework that I precompiled before linking with application.
I use this framework in project.


How could I extract its debug symbols?


In archive I could find these symbols, but they are not named as these that could help me.
They are not named as UUIDS.


As I understand bitcode technology, framework symbols should be shipped with application binary.


Is it correct?
How could I copy them into result application archive folder without any issues?


Two scenarios and four possiblities:
Framework embedded into binary or not embedded.

However, framework could be precompiled in different project and framework binary could be linked with project ( no compilation needed ).


So a grid of possiblities:


  1. Framework embedded, compiled with binary.
  2. Framework embedded, NOT compiled with binary.
  3. Framework not embedded, compiled with binary ( possible? )
  4. Framework not embedded, NOT compiled with binary.

Could anybody describe steps to include debug symbols in each situation?


Thanks!

Xcode framework dsyms different scenarios explanation
 
 
Q