Skip to content

Commit

Permalink
Fix Xcode 12 warning IPHONEOS_DEPLOYMENT_TARGET
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
massimobio authored Nov 24, 2020
1 parent 171b323 commit c1dda88
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ let package = Package(
name: "KissXML",
platforms: [
.macOS(.v10_10),
.iOS(.v8),
.iOS(.v9),
.tvOS(.v9),
.watchOS(.v2)
],
Expand Down

0 comments on commit c1dda88

Please sign in to comment.