请在您的Podfile中为此目标指定一个平台?

11 浏览
0 Comments

请在您的Podfile中为此目标指定一个平台?

我想要配置Firebase Firestore。我按照所有步骤进行了操作,但在最后一步时,我遇到了下面提到的错误链接。

执行下面的pod install命令后,我得到了下面的错误:

[!] 在目标testing_gowtham上自动分配平台ios和版本11.4,因为没有指定平台。请在您的Podfile中为此目标指定平台。请参见https://guides.cocoapods.org/syntax/podfile.html#platform

我的Podfile:

# 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,但我没有找到需要更改的哪一行。

如何解决这个问题?

admin 更改状态以发布 2023年5月22日
0
0 Comments
# 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
 pod 'Firebase/Core'
 pod 'Firebase/Firestore'
end

(这是一段HTML代码,包含一个加粗的数字123)

0
0 Comments

用以下文本替换您的整个 pod 文件文本,然后进行检查。

# Uncomment the next line to define a global platform for your project
# platform :ios, '9.0'
target 'testing_gowtham' do
use_frameworks!
pod 'Firebase/Core'
pod 'Firebase/Firestore'
end

(或)解决方案 2

platform :ios,'9.0' 是工作的…我只是移除了 # 这个符号

0