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.
1 parent 5434278 commit 03a5f5fCopy full SHA for 03a5f5f
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(
@@ -21,7 +21,7 @@ let package = Package(
21
.target(
22
23
dependencies: [],
24
- exclude: ["MetaData", "Examples"]),
+ exclude: ["../../MetaData", "../../Examples"]),
25
.testTarget(
26
name: "GameKitUITests",
27
dependencies: ["GameKitUI"])
0 commit comments