Xcode Couldn’t Generate Swift Representation for my own framework
From my experience there are two possible causes for this issue. The first one is that your framework can’t be located. To fix this you need to go to target’s Build Settings and add a path to Framework Search Paths either an absolute: /Users/{user}/path-to-framework-parent-directory or relative to project directory: $(PROJECT_DIR)/path-to-framework-parent-directory Another possible cause is that … Read more