I am trying to add "Custom.framework" to my container (cocoapods). And I'm a little stuck in setting the spec. I have done the following:
s.resources = ['Resources/Custom.framework']
s.preserve_paths = "Resources/Custom.framework"
s.frameworks = "UIKit", "Custom"
But in the project where I use this module, I get an error
<Custom/Custom.h> not found
or something similar.
I’ve been stuck for several hours and I can’t find the answer to my question on google.
BR, Pavlo.
source
share