我尝试使用以下文件创建文件:
'
platform :osx, '10.0'
use_frameworks!
target 'MyApp' do
pod 'SwiftyJSON', '~> 2.2.0'
end
运行命令
pod安装
已重新调整:
Analyzing dependencies
[!] CocoaPods could not find compatible versions for pod "SwiftyJSON":
In Podfile:
SwiftyJSON (~> 2.2.0)
Specs satisfying the `SwiftyJSON (~> 2.2.0)` dependency were found, but they required a higher minimum deployment target.
我认为可能与平台有关,所以我去了CoCaoPods.org上的SwiftJSON文档。
这就是我发现的
哦,也许不是'osx',而是'macOS'。我将Podfile更新为此:
platform :macOS, '10.0'
use_frameworks!
target 'Maconomi' do
pod 'SwiftyJSON', '~> 2.2.0'
end
并再次运行前面的命令并得到此错误:
[!] Invalid `Podfile` file: Unsupported platform `macOS`. Platform must be `:ios`, `:osx`, `:tvos`, or `:watchos`..
# from /Users/travis.rivera/Documents/macOSAPP/Maconomi/Podfile:1
# -------------------------------------------
> platform :macOS, '10.0'
# use_frameworks!
# -------------------------------------------
所以现在我被卡住了。
答案 0 :(得分:0)
main.cpp
然后
pod安装
我错过了osx的最低版本号。