找不到模块“Cloud_Firestore”-XCode

问题描述 投票:0回答:1

[在此处输入图片描述][1]``` 当我尝试使用 Xcode 验证我的应用程序时,出现此错误

我实际上是在搜索这个问题,我在这里找到了很多解决方案,但是在应用了所有解决方案但没有任何效果后,我决定问一下,


I try to follow this module https://stackoverflow.com/questions/73917912/module-cloud-firestore-not-found-xcode-flutter

But not work


  [1]: https://i.stack.imgur.com/SjYdC.jpg
flutter xcode google-cloud-firestore
1个回答
0
投票

我有一个类似的案例,但不是

cloud_firestore
。在我的例子中,我的 Podfile 除了这些行之外都是空的:

target 'Runner' do
  use_frameworks!

end

我将这个 Podfile 与我之前提交的 Podfile 进行了比较,结果发现项目的 Podfile 不知何故被清空了。 在我使用

cloud_firestore
构建的单独项目中,以下是我的 Podfile:

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

# CocoaPods analytics sends network stats synchronously affecting flutter build latency.
ENV['COCOAPODS_DISABLE_STATS'] = 'true'

project 'Runner', {
  'Debug' => :debug,
  'Profile' => :release,
  'Release' => :release,
}

def flutter_root
  generated_xcode_build_settings_path = File.expand_path(File.join('..', 'Flutter', 'Generated.xcconfig'), __FILE__)
  unless File.exist?(generated_xcode_build_settings_path)
    raise "#{generated_xcode_build_settings_path} must exist. If you're running pod install manually, make sure flutter pub get is executed first"
  end

  File.foreach(generated_xcode_build_settings_path) do |line|
    matches = line.match(/FLUTTER_ROOT\=(.*)/)
    return matches[1].strip if matches
  end
  raise "FLUTTER_ROOT not found in #{generated_xcode_build_settings_path}. Try deleting Generated.xcconfig, then run flutter pub get"
end

require File.expand_path(File.join('packages', 'flutter_tools', 'bin', 'podhelper'), flutter_root)

flutter_ios_podfile_setup

target 'Runner' do
  use_frameworks!
  use_modular_headers!

  flutter_install_all_ios_pods File.dirname(File.realpath(__FILE__))
end

post_install do |installer|
  installer.pods_project.targets.each do |target|
    flutter_additional_ios_build_settings(target)
  end
end

希望这有帮助。

© www.soinside.com 2019 - 2024. All rights reserved.