-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPackage.swift
59 lines (54 loc) · 1.75 KB
/
Package.swift
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
// swift-tools-version: 6.0
// WARNING:
// This file is automatically generated.
// Do not edit it by hand because the contents will be replaced.
import PackageDescription
let package = Package(
name: "try-in-a-playground.swiftpm",
platforms: [
.iOS("17.4")
],
products: [],
dependencies: [
.package(url: "https://github.com/mxcl/Version", from: "2.1.0")
],
targets: [
.executableTarget(
name: "AppModule",
dependencies: [
.product(name: "Version", package: "Version")
],
swiftSettings: [
.unsafeFlags(["-Xfrontend", "-warn-long-function-bodies=100"], .when(configuration: .debug)),
.unsafeFlags(["-Xfrontend", "-warn-long-expression-type-checking=100"], .when(configuration: .debug)),
.enableUpcomingFeature("ExistentialAny"),
]
)
]
)
#if canImport(AppleProductTypes)
import AppleProductTypes
package.products += [
.iOSApplication(
name: "Try in a Playground",
targets: ["AppModule"],
bundleIdentifier: "xyz.kebo.try-in-a-playground",
teamIdentifier: "X4678G5DL2",
displayVersion: "1.0.0",
bundleVersion: "1",
appIcon: .placeholder(icon: .rocket),
accentColor: .presetColor(.green),
supportedDeviceFamilies: [
.pad,
.phone,
],
supportedInterfaceOrientations: [
.portrait,
.landscapeRight,
.landscapeLeft,
.portraitUpsideDown(.when(deviceFamilies: [.pad])),
],
additionalInfoPlistContentFilePath: "Info.plist"
)
]
#endif