[ad_1]
I’m growing a package deal that helps minimal iOS 14. Package deal.swift
platforms: [.iOS(.v14), .macOS(.v10_15)]
However the dependencies Swinject and CocoaLumberjack have iOS 9 because the minimal model.
let package deal = Package deal(
identify: "CocoaLumberjack",
platforms: [
.iOS(.v9),
.macOS(.v10_10),
.watchOS(.v3),
.tvOS(.v9),
],
When I’m attempting to construct xcframework utilizing swift create-xcframework I get an error
** ARCHIVE FAILED **
The next construct instructions failed:
CompileSwiftSources regular armv7 com.apple.xcode.instruments.swift.compiler (in goal 'Swinject' from venture 'CompanyKit')
CompileSwiftSources regular arm64 com.apple.xcode.instruments.swift.compiler (in goal 'Swinject' from venture 'CompanyKit')
CompileSwiftSources regular arm64 com.apple.xcode.instruments.swift.compiler (in goal 'SwiftMQTT' from venture 'CompanyKit')
Ld /Customers/lirisoft/Library/Developer/Xcode/DerivedData/CompanyKit-czrcefyhlqzdlifiutaqrsmtkhhw/Construct/Intermediates.noindex/ArchiveIntermediates/CompanyKit/IntermediateBuildFilesPath/CompanyKit.construct/Launch-iphoneos/CocoaLumberjack.construct/Objects-normal/armv7/Binary/CocoaLumberjack regular armv7 (in goal 'CocoaLumberjack' from venture 'CompanyKit')
(4 failures)
Utilizing Xcode 13.2.1
I wish to limit archiving to iOS 14 and macOS 10.15
[ad_2]
