我遇到了在Xcode上安装Firebase以获得快速应用程序的问题。
我收到了这个错误:
pod无法找到
的规范Firebase (>= 2.5.0)
我的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!
pod 'Firebase', '>= 2.5.0'
target 'banana' do
end
target 'bananaTests' do
end
target 'bananaUITests' do
end
我不知道为什么,因为我从Firebase跟踪了本教程的每一步。
答案 0 :(得分:3)
尝试删除特定版本信息,只需:
pod update Firebase
如果这不起作用,请尝试通过在项目根目录的命令行中输入以下命令来强制您的本地pod spec repo更新Firebase:
if event.key == pygame.K_w:
for sprite in player.northSprites:
for ent in world.entityList:
ent.y_coord +=1
g.screen.blit(world.background, (0,0))
g.screen.blit(sprite, (256-20,256-30))
world.drawWorld()
答案 1 :(得分:0)
如果你确定你跑
pod setup
pod install
它对我有用。确保您没有使用Mac中安装的默认Texteditor打开Podfile,这会弄乱您的sigle报价。只用Xcode打开它。