Skip to content

Commit 4e95f70

Browse files
authored
Merge pull request #19 from pawello2222/fix/update-package
Fix warnings in Package.swift
2 parents 5434278 + 3e408de commit 4e95f70

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

Package.swift

Lines changed: 5 additions & 7 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(
@@ -19,9 +19,7 @@ let package = Package(
1919
],
2020
targets: [
2121
.target(
22-
name: "GameKitUI",
23-
dependencies: [],
24-
exclude: ["MetaData", "Examples"]),
22+
name: "GameKitUI"),
2523
.testTarget(
2624
name: "GameKitUITests",
2725
dependencies: ["GameKitUI"])

0 commit comments

Comments
 (0)