I want to use google map to existing(not a new one) iPhone project.Now i am using Google map ios sdk and i successfully added google map framework to my project.But i got error like this
ld: framework not found GoogleMaps
clang: error: linker command failed with exit code 1 (use -v to see invocation)
How to solve this issue.I am using xcode4.5 and google map iOS sdk version is 1.5. When i am creating new project with google map iOS sdk then no error getting for me.Error only for existing iOS Project.Please help me.
my problem was fixed by adding in:
clickable and add the following lines:
I solved my issue
You need to do this
Following information for getting framework search paths
Good luck
Follow the steps :
GoogleMaps-iOS-1.1.0.zip
from their siteGoogleMaps-iOS-1.1.0
folderGoogleMaps.framework
folder.GoogleMaps.framework
folder to inside your project folder (in Finder).GoogleMaps.framework
folder onto yourFrameworks
group in Xcode.(Note that you can also do this the other way, by not copying it into your project folder and checking "Copy items into destination group's folder". Xcode will copy the folder itself.)
Import using
#import "GoogleMaps/GoogleMaps.h"
. The angle bracket usually work too, but in this case it should use quotes.From : <GoogleMaps/GoogleMaps.h> file not found Google Maps SDK for iOS
I've been struggling with this issue for hours; I'm using CocoaPods, Swift and Xcode 6.1.1. I followed all the steps for including GoogleMaps in my project carefully, tried many different things like removing symbolic links in the downloaded package or manually linking the binaries in build phases or trying
#include "GoogleMaps.h"
,#include "GoogleMaps/GoogleMaps.h"
and"#include <GoogleMaps/GoogleMaps.h>
in my bridge file, none of that worked... Finally used CocoaPods instead of including the framework myself and it worked! Hope it helps someone out there:In the Podfile:
pod 'Google-Maps-iOS-SDK', '~> 1.9.2'
And in your Bridge file:
#import "GoogleMaps.h"
Maybe it'll be useful for anybody, next steps helped me: 1. Delete "Headers" and "GoogleMaps" folders manually (from the Finder). 2. Run 'pod install' 3. Re-build the project in Xcode.
In my case, I forgot that I need to open the workspace file with pods, not the project.