Reputation: 1865
Is it somehow possible to embed a framework/binary in cocoapod? Didn't find any find on the internet.
The source code of this binary/framework shouldn't be visible, for the users of the pod
The option of embedding a binary is just lacking in cocoapod build.
Upvotes: 3
Views: 1702
Reputation: 89
add s.vendored_frameworks ='XXXX.framework'
(your framework) in your podspec file,
It worked to me!
Upvotes: 3