“Multiple commands produce on flutter” 可以翻译为 “在Flutter中产生多个命令”。

huangapple go评论63阅读模式
英文:

Multiple commands produce on flutter

问题

After we added imageNotification dixcode for flutter, building the IPA is not working, and we received an error like this: "Multiple commands produce '/Users/mac/Library/Developer/Xcode/DerivedData/Runner-fgrmoxpodmwmsaevziaqkpmvmfmo/Build/Intermediates.noindex/ArchiveIntermediates/Runner/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/FirebaseCoreInternal.framework.'" However, when we run "flutter run," it works fine on our device. Is there any solution for this case?

我们正在使用 Xcode 版本 14.0.1。

英文:

after we added imageNotification dixcode for flutter build ipa not working and got error like this Multiple commands produce '/Users/mac/Library/Developer/Xcode/DerivedData/Runner-fgrmoxpodmwmsaevziaqkpmvmfmo/Build/Intermediates.noindex/ArchiveIntermediates/Runner/IntermediateBuildFilesPath/UninstalledProducts /iphoneos/FirebaseCoreInternal.framework' but we run flutter run it can work fine in our device is there any solution for this case

we are using xcode Version 14.0.1

答案1

得分: 0

感谢大家的帮助,我尝试了这种方式,对我有用,文件位于Pods => Podfile

对于pod 'Firebase/Messaging',我已禁用它

target 'ImageNotification' do
  use_frameworks!
  #pod 'Firebase/Messaging'
end
英文:

thanks for the help guys, I tried this way and it worked for me, the file is in Pods => Podfile

> for pod 'Firebase/Messaging' I disabled it

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

huangapple
  • 本文由 发表于 2023年5月11日 12:39:04
  • 转载请务必保留本文链接:https://go.coder-hub.com/76224197.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定