Skip to content

Commit c1dda88

Browse files
authored
Fix Xcode 12 warning IPHONEOS_DEPLOYMENT_TARGET
Fixes the warning The iOS Simulator deployment target 'IPHONEOS_DEPLOYMENT_TARGET' is set to 8.0, but the range of supported deployment target versions is 9.0 to 14.2.99.
1 parent 171b323 commit c1dda88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Package.swift

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ let package = Package(
55
name: "KissXML",
66
platforms: [
77
.macOS(.v10_10),
8-
.iOS(.v8),
8+
.iOS(.v9),
99
.tvOS(.v9),
1010
.watchOS(.v2)
1111
],

0 commit comments

Comments
 (0)