Linker errors in a Swift project with Google Maps for iOS added via CocoaPods

走远了吗. 提交于 2019-12-23 07:33:23

问题


I'm trying to add Google Maps SDK for iOS for a Swift project I'm working on via CocoaPods since CocoaPods now supports Swift.

Here's my podfile.

source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
platform :ios, '7.0'

pod 'Google-Maps-iOS-SDK'

Pod installation completes successfully and I could import the framework like this import GoogleMaps without any compilation errors.

But then I went ahead and added a UIView and set its class to GMSMapView and added a IBOutlet to my view controller and build the project. I get the following error.

Linker command failed with exit code 1 (use -v to see invocation)

I've added and used libraries written in Objective-C like MagicalRecord, MBProgressHUD on Swift projects without any issue.

I uploaded a demo Xcode project here as well.

Any way to resolve this?


回答1:


The problem that you are facing is a combination of a bug on CocoaPods and a malformed podspec. Check this for more information.

Feel free to use this podspec:

https://raw.githubusercontent.com/Reflejo/GoogleMapsPodspec/master/Google-Maps-iOS-SDK.podspec.json

... in your Podfile as:

pod 'Google-Maps-iOS-SDK', :podspec => "https://raw.githubusercontent.com/Reflejo/GoogleMapsPodspec/master/Google-Maps-iOS-SDK.podspec.json"



回答2:


Response from a Google engineer:

I believe this bug is now fixed in 1.10.0. As part of moving to officially supporting CocoaPods we have changed the name of the Google Maps SDK for iOS CocoaPod. Please update your Podfile like this:

source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '8.3'
use_frameworks!

pod 'GoogleMaps', '1.10.0'

(source of this information)

Note:

Nonetheless the fix above introduces a new warning, please see the following link.

So I personally recommend you staying with pod 'Google-Maps-iOS-SDK', :podspec => "https://raw.githubusercontent.com/Reflejo/GoogleMapsPodspec/master/Google-Maps-iOS-SDK.podspec.json" until the bug will be fixed in a newer version of the Google Maps iOS SDK, or simply silencing this warning by adding -Wl,-no_compact_unwind in build settings flags.



来源:https://stackoverflow.com/questions/28405079/linker-errors-in-a-swift-project-with-google-maps-for-ios-added-via-cocoapods

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!