【发布时间】: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