在Xcode构建应用时,Flutter出现GoogleAppMeasurement错误。

3

我尝试在iOS中实现Firebase Messaging,但当我运行App时出现错误:

xcodebuild: error: Could not resolve package dependencies:
  failed extracting 'https://dl.google.com/firebase/ios/swiftpm/8.9.1/GoogleAppMeasurement.zip' which is required by binary target 'GoogleAppMeasurement': /Users/gibran/Library/Developer/Xcode/DerivedData/Runner-eewwhhiksecuthcstpvuemjjxbiu/SourcePackages/artifacts/extract/GoogleAppMeasurement is not a directory
  fatalError

我按照这份说明进行操作,但出现了错误。我尝试手动创建文件夹SourcePackages/artifacts/extract/GoogleAppMeasurement,但重新运行后,该文件夹仍会像以前一样生成。

以下是我的Podfile:

   # Uncomment this line to define a global platform for your project
platform :ios, '12.0'
$FirebaseSDKVersion = '8.9.1'

# 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!
  pod 'Firebase/Core'
  pod 'Firebase/Messaging'

  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

# target 'ImageNotification' do
#    use_frameworks!
#    pod 'Firebase/Core'
#    pod 'Firebase/Messaging'
# end

有人可以帮忙解决这个问题吗?先谢谢了。


1
你找到解决方案了吗? - Ahmed Morra
在使用 Firebase 时,只需通过 Xcode 添加 GoogleService.plist 文件,不要按照添加 SDK 的其余说明操作。我不知道为什么,但这会导致失败并出现此类错误。 - Ngodiseni Netshifhefhe
这里也遇到了同样的错误。有解决方案吗? - imperial-lord
这真令人沮丧。在我的情况下,我在Pods中添加了GoogleMobileAds,而Firebase特定类是通过Swift包管理器安装的。但是出现了那个错误。 - chitgoks
2个回答

3
使用Firebase时,只需通过Xcode添加GoogleService.plist文件,不需要按照添加SDK的其他说明操作。我不知道为什么,但这会导致失败并出现此类错误。

1
是的,这种方法可行。 - Alif Al-Gibran

0

尝试从Xcode将'GoogleAppMeasurement'添加为依赖项


网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接