We have different project targets that have different deployment versions.
When running pod install, different pod targets are created with different names in this format: Localize-Swift-iOS<version>.
When archiving using the new build system, the compiler complains that multiple commands produce localize-swift.framework.
Full error description:
Multiple commands produce '/Users/me/Library/Developer/Xcode/DerivedData/<productName>-gqrwpkrplsfsnnfqokkumktsqfzn/Build/Intermediates.noindex/ArchiveIntermediates/<productName>-Production/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Localize_Swift.framework':
1) Target 'Localize-Swift-iOS12.1' has create directory command with output '/Users/me/Library/Developer/Xcode/DerivedData/<productName>-gqrwpkrplsfsnnfqokkumktsqfzn/Build/Intermediates.noindex/ArchiveIntermediates/<productName>-Production/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Localize_Swift.framework'
2) Target 'Localize-Swift-iOS14.0' has create directory command with output '/Users/me/Library/Developer/Xcode/DerivedData/<productName>-gqrwpkrplsfsnnfqokkumktsqfzn/Build/Intermediates.noindex/ArchiveIntermediates/<productName>-Production/IntermediateBuildFilesPath/UninstalledProducts/iphoneos/Localize_Swift.framework'
We have different project targets that have different deployment versions.
When running
pod install
, different pod targets are created with different names in this format:Localize-Swift-iOS<version>
. When archiving using the new build system, the compiler complains that multiple commands producelocalize-swift.framework
.Full error description: