Reputation: 730
I have a swift framework and I use on objective c project. I create a fat framework with script. It works till Xcode 10.2. I try to create fat framework on Xcode 10.2. It compiled successful but when I added on my objective-c project it not working on simulator.
Apple's release notes include my error but I didn't work. (https://developer.apple.com/documentation/xcode_release_notes/xcode_10_2_release_notes in known issues)
How can I create fat framework headers file for simulator?
Upvotes: 2
Views: 1108
Reputation: 11
Try this one https://gist.github.com/closerminds/8a8d8db6f87d2a65c4487f396f986737 This use the workaround proposed by Apple
Upvotes: 1