Using cocoa pods 0.37.0 in a Swift project, with use_frameworks! set in the podfile, I am unable to access the header files for the GoogleAnalytics-iOS-SDK pod.
How shou
Another trick is to add long relative path(s) to the bridging header.
This avoids having to make changes to project settings which may be overridden next time you run `pod install':
#import "../../Pods/GoogleAnalytics/Headers/Public/GAI.h"
#import "../../Pods/GoogleAnalytics/Headers/Public/GAIFields.h"
#import "../../Pods/GoogleAnalytics/Headers/Public/GAIDictionaryBuilder.h"
It also works when running your unit tests too, which another solution I tried didn't.