1. ホーム
  2. ios

[解決済み] Podfileでこのターゲットのプラットフォームを指定してください。

2023-07-18 08:20:04

質問

Firebase Firestoreを設定したいです。すべてのステップに従いましたが、最後のステップで、私は私が言及する以下のリンクのエラーが発生しました。

これを実行した後 ポッドインストール コマンドを実行したところ、以下のようなエラーが発生しました。

[!] プラットフォームを自動的に割り当てる ios とバージョン 11.4 で ターゲット 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 が、どの行を変更する必要があるのかわかりませんでした。

この問題を解決するにはどうしたらよいでしょうか。

どのように解決するのですか?

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' は機能しているのですが...私は単に # これ