Reputation: 404
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_GMSServices", referenced from:
type metadata accessor for __ObjC.GMSServices 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)
Upvotes: 1
Views: 354
Reputation: 961
I am guessing you are building for the arm64bit and the Google Maps SDK doesnt have a 64 bit version.
Try building for armv7, armv7s only
If this do not solve your purpose check the framework list required to integrate GoogleMaps.
Upvotes: 1