I get the following warnings when I install quick and nimble in xcode 7
Directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'
Directory not found for option '-F/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneSimulator.platform/Developer/SDKs/iPhoneSimulator9.0.sdk/Developer/Library/Frameworks'
There was an issue open on this, but it seems like it was resolved, so I am guessing I am doing something else wrong.
There is also this SO question but the answers there suggest removing the framework search path, which I have something for google maps added to that and I get other errors when I delete that entry.
Any other ideas?
Here is my podfile:
platform :ios , '8.0'
use_frameworks!
target 'OurLatitude' do
pod 'AlamofireObjectMapper', '~> 0.9'
pod 'DateTools'
pod 'GoogleMaps'
pod 'Google/CloudMessaging'
pod 'SDWebImage', '~>3.7'
pod 'SDWebImage/MapKit', '~>3.7'
end
target 'OurLatitudeTests' do
pod 'Quick', '~> 0.6.0'
pod 'Nimble', '2.0.0-rc.3'
pod 'AlamofireObjectMapper', '~> 0.9'
pod 'DateTools'
pod 'GoogleMaps'
pod 'Google/CloudMessaging'
pod 'SDWebImage', '~>3.7'
pod 'SDWebImage/MapKit', '~>3.7'
end