我正在尝试将Firebase / MLVision添加到我的iOS应用中,但是运行pod install可以使我做到这一点:
[!] CocoaPods could not find compatible versions for pod "Firebase/MLVision":
In Podfile:
Firebase/MLVision
Specs satisfying the `Firebase/MLVision` dependency were found, but they required a higher minimum deployment target.
我该怎么办?任何帮助都将受到高度赞赏!
答案 0 :(得分:3)
尝试了一段时间后,在这里找到了答案:https://stackoverflow.com/a/46613676/1585677
基本上从pod文件中删除Firebase / MLVision,然后运行
pod repo update
pod update
然后将Firebase / MLVision添加到Podfile并运行pod install
答案 1 :(得分:0)
看起来您的Pod文件无效,或未定位到您的项目。如有疑问,您可以在这里看到working codelab。
答案 2 :(得分:0)
很可能Podfile中指定的ios版本太低。对于Firebase 5.x,它必须至少为8.0,包括MLVision子规格:
platform :ios, '8.0'