【问题标题】:Flutter error GoogleAppMeasurement when build app in Xcode在 Xcode 中构建应用程序时出现颤振错误 GoogleAppMeasurement
【发布时间】:2022-01-07 10:54:43
【问题描述】:

我尝试在 ios 中实现 Firebase 消息传递,但是当我运行应用程序时出现错误:

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

我已按照this 指令操作并出现错误。我尝试在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

有人可以帮助解决这个问题吗?提前致谢。

【问题讨论】:

  • 你找到解决办法了吗?
  • 使用 firebase 时,只需通过 Xcode 添加 GoogleService.plist,不要遵循添加 SDK 的其余说明。我不知道为什么,但这会导致它失败并给出这样的错误
  • 在这里遇到同样的错误。有什么解决办法吗?

标签: ios firebase flutter firebase-cloud-messaging apple-push-notifications


【解决方案1】:

使用 firebase 时,只需通过 Xcode 添加 GoogleService.plist,不要按照添加 SDK 的其余说明进行操作。我不知道为什么,但这会导致它失败并给出这样的错误

【讨论】:

  • 是的,这种方法行得通
【解决方案2】:

尝试将“GoogleAppMeasurement”添加为 xcode 的依赖项

【讨论】:

    猜你喜欢
    • 2021-03-20
    • 2020-05-11
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2021-03-05
    • 2021-05-01
    • 2022-01-16
    • 2022-01-09
    相关资源
    最近更新 更多