1

iOS アプリへの Firebase インストールのこのステップで、私は本当に立ち往生しています。Xcode への Firebase のインストール何度も試してみたところ、最終的にいくつかの「ポッド ファイル」をプロジェクトにインストールできました。しかし、追加するimport Firebaseと、エラーが次のように表示されます

そのようなモジュール「Firebase」はありません

firebase pod を既存の ios プロジェクトにインストールする方法を教えてもらえますか? また、インストールしたばかりのポッドをクリアする方法。

私はswift 2.2、Scode 7.3、およびmac os x eiを使用しています

私のポッドコンテンツは

# Uncomment this line to define a global platform for your project
 platform :ios, '9.0'

target ‘APPNAME’ do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!

   # Pods for APPNAME

  target 'APPNAME Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'APPNAME UITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

My Error : 私 のエラーの画像

4

1 に答える 1

1

ポッドファイルにこの行を追加します

# Uncomment this line to define a global platform for your project
 platform :ios, '9.0'

target ‘APPNAME’ do
  # Comment this line if you're not using Swift and don't want to use dynamic frameworks
  use_frameworks!
 pod 'Firebase', '>= 2.5.1'
   # Pods for APPNAME

  target 'APPNAME Tests' do
    inherit! :search_paths
    # Pods for testing
  end

  target 'APPNAME UITests' do
    inherit! :search_paths
    # Pods for testing
  end

end

その後、ポッドを更新します

于 2016-06-17T10:35:47.320 に答える