I updated to xCode 7.1 today and tried to build my app but I\'m getting this error:
I have already tried going to Build Settings under \"Target\" and set \"
This thread may be useful.
I tried a few things, but I'm not positive which one fixed the issues. First, I edited my Podfile to include:
post_install do |installer|
installer.pods_project.build_configuration_list.build_configurations.each do |configuration|
configuration.build_settings['CLANG_ALLOW_NON_MODULAR_INCLUDES_IN_FRAMEWORK_MODULES'] = 'YES'
end
end
Then, I added a bridging header file, with one line:
#import
Cleaned and rebuilt the project and that did the trick.