ios - Module 'google maps' not found after adding another dependency on Xcode -
i have been working googles map sdk , haven't had problems until added dependency in podfile. error in xcode saying, "module 'google maps' not found" have '@import googlemaps'. if take out new pod error goes away , works fine. started using cocoapods, there i'm missing in podfile?
platform :ios, '6.1' pod 'sdwebimage', '~>3.7' source 'https://github.com/cocoapods/specs.git' pod 'googlemaps'
you have add
target 'your project' pod 'sdwebimage', '~>3.8' pod 'googlemaps' target 'your projecttests' # pods testing end
the project run fine now..