Xcode (Swift) 中没有这样的模块“Firebase”

eva*_*aus 4 xcode ios firebase swift firebase-realtime-database

我一直在查找与此 Xcode 错误有类似/相同问题的每个网站,并且我已经尝试了所有方法,但没有任何效果。大多数人说清理和构建该项目将使 Firebase 得到认可,但这并没有奏效。我尝试了一堆不同的框架搜索路径,但每个框架都位于不同的文件夹中,而不是一个框架文件夹中。这是我的 Podfile:

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

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

 # Pods for Target

  target 'TargetTests' do
    inherit! :search_paths
    pod 'Firebase', '>= 2.5.0'
    # Pods for testing
 end

end
Run Code Online (Sandbox Code Playgroud)

这些是我的项目文件夹

我尝试过创建我的框架搜索路径 $(SRCROOT) 和所有变体,但没有任何效果。我的问题似乎与我通过谷歌搜索找到的任何其他问题都不一样。我怀疑它是框架搜索路径,但我不知道该怎么做,而且我可能是错的。

任何帮助将不胜感激。

Der*_*123 6

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

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

  # Pods for Promposal

target 'Promposal' do

    pod 'Firebase', '>= 2.5.0'

    # Pods for testing
 target 'PromposalTests' do
    inherit! :search_paths
    pod 'Firebase', '>= 2.5.0'
 end

end
Run Code Online (Sandbox Code Playgroud)

您正确地编写了您的内容podfile,并将Firebase唯一的内容添加到了test. 尝试这个podfile并检查。