Reputation: 9354
How is it possible to hide some framework usage (let's call it HideFramework
), so it will not be exposed in IPA file?
I was trying to wrap code of that framework inside my own framework, but it still require dynamic linking my app with HideFramework
.
Even if I embed HideFramework
in my own framework
What I want to achieve: I want to hide any signs of HideFramework
usage from IPA file
Upvotes: 2
Views: 548
Reputation: 11839
Dynamic frameworks can not hidden. You need to convert your framework into static library. This is because "Static library" is linked at compile time, which does not change. Which is why it is not present in ipa file compare to frameworks which are available.
You can find detailed information here - Library? Static? Dynamic? Or Framework? Project inside another project
Upvotes: 1