0

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

Vitalii Gozhenko
  • 8,319
  • 2
  • 42
  • 64
  • 1
    Are you really asking how to ***hide the fact that you are using someone else's Framework???*** – DonMag Feb 14 '18 at 14:22

1 Answers1

1

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

rishi
  • 11,482
  • 4
  • 38
  • 58