安装pod文件时出现Firebase Messaging错误

时间:2016-07-01 18:22:52

标签: swift terminal firebase cocoapods firebase-cloud-messaging

我正在尝试安装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
"

如何解决此问题?

2 个答案:

答案 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更改为:

<#>`#取消注释此行以定义项目的全局平台  平台:ios,&#39; 8.0&#39;

目标&#39; YourApp&#39;做
  #如果您不使用Swift并且不想使用动态框架,请注释此行   use_frameworks!

YourApp的#Pods pod&#39; Firebase&#39;

结束``

终端上的

3):pod install

4)现在,再次将文件Podfile更改为:
`#取消注释此行以定义项目的全局平台  平台:ios,&#39; 8.0&#39;

目标&#39; YourApp&#39;做什么   #如果您不使用Swift并且不想使用动态框架,请注释此行   use_frameworks!

YourApp的#Pods pod&#39; Firebase&#39;
pod&#39; Firebase / Messaging&#39;

结束``

5)终端:pod更新  
对不起,关于我的英语,
好看!