Fix the platform limit in SwiftPM

This commit is contained in:
DreamPiggy 2019-12-27 12:04:53 +08:00
parent 0da097c43e
commit dc62982bbb
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ import PackageDescription
let package = Package( let package = Package(
name: "SDWebImageWebPCoder", name: "SDWebImageWebPCoder",
platforms: [ platforms: [
.macOS(.v10_13), .iOS(.v8), .tvOS(.v10) .macOS(.v10_10), .iOS(.v8), .tvOS(.v9), .watchOS(.v2)
], ],
products: [ products: [
// Products define the executables and libraries produced by a package, and make them visible to other packages. // Products define the executables and libraries produced by a package, and make them visible to other packages.