Skip to content

Commit 03a5f5f

Browse files
committed
Removed warnings in Package.swift
1 parent 5434278 commit 03a5f5f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Package.swift

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ import PackageDescription
55

66
let package = Package(
77
name: "GameKitUI",
8-
platforms: [ .iOS(SupportedPlatform.IOSVersion.v13),
9-
.macOS(SupportedPlatform.MacOSVersion.v10_15),
10-
.tvOS(SupportedPlatform.TVOSVersion.v13),
11-
.watchOS(SupportedPlatform.WatchOSVersion.v6)
8+
platforms: [ .iOS(.v13),
9+
.macOS(.v10_15),
10+
.tvOS(.v13),
11+
.watchOS(.v6)
1212
],
1313
products: [
1414
.library(
@@ -21,7 +21,7 @@ let package = Package(
2121
.target(
2222
name: "GameKitUI",
2323
dependencies: [],
24-
exclude: ["MetaData", "Examples"]),
24+
exclude: ["../../MetaData", "../../Examples"]),
2525
.testTarget(
2626
name: "GameKitUITests",
2727
dependencies: ["GameKitUI"])

0 commit comments

Comments
 (0)