I'm seeking how to resolve "use of '@import' when modules are disabled" when adding Google Analytics through cocoapods:
pod 'Google/Analytics', '~> 1.0.0'
link_with 'AppTarget', 'AppTargetTests'
In code:
#import <Google/Analytics.h>
I get this error within a pod:
"use of '@import' when modules are disabled"
I checked all projects and see that modules are enabled, along with the other suggestiont to "Link frameworks automatically"
I cannot override this import because of this error:
How can I resolve "use of '@import' when modules are disabled" when adding frameworks through cocoapods in xCode6?