We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 5434278 + 3e408de commit 4e95f70Copy full SHA for 4e95f70
Package.swift
@@ -5,10 +5,10 @@ import PackageDescription
5
6
let package = Package(
7
name: "GameKitUI",
8
- platforms: [ .iOS(SupportedPlatform.IOSVersion.v13),
9
- .macOS(SupportedPlatform.MacOSVersion.v10_15),
10
- .tvOS(SupportedPlatform.TVOSVersion.v13),
11
- .watchOS(SupportedPlatform.WatchOSVersion.v6)
+ platforms: [ .iOS(.v13),
+ .macOS(.v10_15),
+ .tvOS(.v13),
+ .watchOS(.v6)
12
],
13
products: [
14
.library(
@@ -19,9 +19,7 @@ let package = Package(
19
20
targets: [
21
.target(
22
- name: "GameKitUI",
23
- dependencies: [],
24
- exclude: ["MetaData", "Examples"]),
+ name: "GameKitUI"),
25
.testTarget(
26
name: "GameKitUITests",
27
dependencies: ["GameKitUI"])
0 commit comments