I’m building my own iOS framework using this package: https://github.com/kstenerud/iOS-Universal-Framework
This may be a very silly question, but how can I calculate the size of my output SDK? In other words, is the du -sh size of the .framework directory the canonical “SDK size”, or is there some compression that’s done after linking the SDK with the app and bundling it that results in a smaller size?
I apologize in advance if my question is unclear, I’d be glad to clarify it.
After talking with with some developers, the “standard” seems to be to compile an app without your framework, archive to an IPA and look at the size, then do the same but with your framework included and consider the difference in IPA size to be your SDK size.