Reputation: 26383
I've created an objC dynamic framework and I'd like to add it as a dependency into an objC project.
I've read those guides and some SO answers but none of them works:
Products
group of the framework project into the Embedded binaries
section of the sample app.target dependencies
I can see the frameworklink binary with libraries
I can see the frameworkEmbed framework
and my framework is there
Module XXX not found
The only way to make it work seems to add in the framework search path of the build phases, the direct path to the product of the framework itself.
For what I understood it seems that somehow the path of the framework is not taken into account, but as far as I know in none of the guide is written to change it.
[NOTE]: no cocoapods or Carthage solution
Upvotes: 1
Views: 888
Reputation: 26383
Turns out that I had a wrong build settings in Per-configuration Build Products Path
, instead of having it to point to build/debug-iphoneos it was pointing just to build .
Thus the process explained in the question works.
Hope this will help someone else.
Upvotes: 1