我正在尝试将我在 GitHub 上找到的 swift 框架与 GoogleMaps、GooglePlaces 一起安装到我的 Xcode 项目中,但是由于某种原因,当我尝试安装 pod 文件时,它会给出以下错误
[!] 'Pods-project1' 目标具有传递依赖项,包括静态二进制文件: (/Users/user1/Desktop/project1/Pods/GoogleMaps/Base/Frameworks/GoogleMapsBase.framework, /Users/user1/Desktop/project1/Pods /GoogleMaps/Maps/Frameworks/GoogleMaps.framework 和 /Users/user1/Desktop/project1/Pods/GoogleMaps/Maps/Frameworks/GoogleMapsCore.framework)
这是我正在尝试安装的 Pod 文件:
#Uncomment the next line to define a global platform for your project
#platform :ios, '9.0'
source 'https://github.com/CocoaPods/Specs.git'
use_frameworks!
target 'project1' do
pod 'GooglePlaces'
pod 'GoogleMaps'
pod 'Google-Maps-iOS-Utils'
pod 'PopupDialog'
end
这里也是我试图安装的 swift 框架的链接: https ://github.com/Orderella/PopupDialog
我不知道该怎么做,我尝试了多种方法,但似乎都不起作用。任何帮助,将不胜感激。