最佳答案
我想要配置 Firebase Firestore。我遵循了所有的步骤,但是在最后一步,我得到了下面提到的错误链接。
执行这个 吊舱安装命令后,我得到了以下错误
[ ! ]自动分配版本为
11.4
的平台ios
目标testing_gowtham
,因为没有指定平台。请 在您的 Podfile 中为这个目标指定一个平台https://guides.cocoapods.org/syntax/podfile.html#platform
.
我的个人档案:
# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'testing_gowtham' do
# Comment the next line if you're not using Swift and don't want to use dynamic frameworks
use_frameworks!
# Pods for testing_gowtham
target 'testing_gowthamTests' do
inherit! :search_paths
# Pods for testing
end
target 'testing_gowthamUITests' do
inherit! :search_paths
# Pods for testing
end
pod 'Firebase/Core'
pod 'Firebase/Firestore'
end
我看到这个 https://guides.cocoapods.org/syntax/podfile.html#platform,但我没有找到我需要改变哪一行。
如何解决这个问题?