flutter 模块'Cloud_Firestore'未找到- XCode

whhtz7ly  于 2023-03-24  发布在  Flutter
关注(0)|答案(1)|浏览(133)

[在此输入图像描述][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
euoag5mw

euoag5mw1#

我有一个类似的情况,但不是cloud_firestore。在我的情况下,我的Podfile除了以下几行外都是空的:

target 'Runner' do
  use_frameworks!

end

我将这个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

希望这个有用。

相关问题