I'm trying to build a Framework with bitcode included. To do so I've used this post (the section about universal libraries).
After that I've tried to check that the bitcode is actually included in the result following this answer but it seems more difficult to do it with a framework. So, I've done it with my .a (which I also generate), and the result is that the library does include the bitcode.
The problem comes when I try to use it in an app with "Enable Bitcode" set to "Yes", it gives me the error:
bitcode bundle could not be generated because 'path/to/my/lib' was built without full bitcode. All object files and libraries for bitcode must be generated...
What could I be missing? Should I change something in the app, or could it be necessary to make an additional configuration in the Framework project?
Thanks