Reputation: 89
I ran my app on simulator and everything works fine but I keep getting this error on flutter build ipa. Pls anyone help with how to fix it?? I think this is caused by ImageNotification extension.
Error (Xcode): Multiple commands produce '/Users/hiidee/Library/Developer/Xcode/DerivedData/Runner-afelnukxgwdlvvdqgngpnpmsfmoc/Build/Intermediates.noindex/ArchiveIntermediates/Runner/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/GoogleUtilities.framework':
Encountered error while archiving for device.
Upvotes: 2
Views: 2816
Reputation: 89
I was able to solve it by adding below line to my podfile inside ios folder
pod 'GoogleUtilities'
Upvotes: 3