Im trying to link an external Objective-C framework, "frameworkSDK", to my swift project. However I seem to be getting this error :
<unknown>:0: error: failed to import bridging header
I've looked at loads of solutions to my problem but non of them seem to work. Here's what I've done so far :
I've created a "bridingfile.h" at the root of the project and imported "frameworkSDK.frameworkSDK.h" to the file.
I've made sure Objective-C Bridging Header path was correct under Swift Compiler - Code Generation.
I've changed my framework search paths to the where the "frameworkSDK" is located - Code Generation.
Added the path to "bridgingfile.h" to Header Search Paths - Code Generation.
I've tried to instead create the bridgingfile 1 directory in from the root folder, and then update accordingly.
Any help would be greatly appreciated! :)