I created a static library (framework) using the following tutorial https://github.com/jverkoey/iOS-Framework.
The size of the framework is huge - about 220 MB.
When I instead create a dynamic embedded framework , the size is only ~12MB.
Important to note that the framework is distributed as a binary.
Some of the code is written in c++ and objc++.
The linker flags in both projects are identical:
OTHER_LDFLAGS = $(inherited) -ObjC -l"c++"
What is causing this huge variance in size? How do I bring down the size of the static library to be the same as the embedded dynamic library?