Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

GoogleMaps is not a dylib : Error at compile time with pod file

Linker Error : ld: warning: Auto-Linking supplied: framework linker option at/Path /GoogleMaps is not a dylib

Undefined symbols for architecture x86_64:

"_OBJC_CLASS_$_GMSServices", referenced from:

objc-class-ref in AppDelegate.o ld: symbol(s) not found for architecture x86_64

clang: error: linker command failed with exit code 1 (use -v to see invocation)

Here i am using google places API with pod and Xocde 6.3 . This issue is throwing at compile time when i am trying to use any of the class of the Google Maps Frameworks .

like image 783
Alok Avatar asked Jun 02 '15 14:06

Alok


1 Answers

I meet the same problem, I fix it with add the GoogleMaps.framework to Link Binary libraries. It fix and worked.

All lib and framework in my project

like image 60
hellobanny Avatar answered Oct 11 '22 01:10

hellobanny