我正在尝试安装Firebase的pod用于消息传递,我在终端中遇到了这个错误....
“找到了满足Firebase/Messaging
依赖关系的规范,但它们需要更高的最低部署目标。”
这就是我在podfile中的内容
"# Uncomment this line to define a global platform for your project
# platform :ios, ‘8.0’
# Uncomment this line if you're using Swift
# use_frameworks!
target 'PZPlayer' do
pod ‘Firebase’
pod ‘Firebase/Messaging’
end
"
如何解决此问题?
答案 0 :(得分:3)
# Uncomment this line to define a global platform for your project
platform :ios, '9.0'
# Uncomment this line if you're using Swift
use_frameworks!
target 'PZPlayer' do
pod ‘Firebase’
pod ‘Firebase/Messaging’
end
这应该是你的podfile。试试吧。
答案 1 :(得分:0)
我做的多于或少于那个人告诉我们的 但我的步骤有点不同:
1)在终端上:
转到您的项目文件夹:
1.1)cd Desktop / YourApp
1.2)YOURMAC:YourApp Fernanda $ sudo pod init
2)将文件Podfile更改为:
目标' YourApp'做
#如果您不使用Swift并且不想使用动态框架,请注释此行
use_frameworks!
YourApp的#Pods
pod' Firebase'
结束``
终端上的 3):pod install
4)现在,再次将文件Podfile更改为:
`#取消注释此行以定义项目的全局平台
平台:ios,' 8.0'
目标' YourApp'做什么
#如果您不使用Swift并且不想使用动态框架,请注释此行
use_frameworks!
YourApp的#Pods
pod' Firebase'
pod' Firebase / Messaging'
结束``
5)终端:pod更新
对不起,关于我的英语,
好看!