英文:
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
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论