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 50d92a5 commit 8711cb0Copy full SHA for 8711cb0
Package.swift
@@ -0,0 +1,29 @@
1
+// swift-tools-version:5.3
2
+import PackageDescription
3
+
4
+let package = Package(
5
+ name: "Spring",
6
+ platforms: [
7
+ .iOS(.v8),
8
+ .tvOS(.v11)
9
+ ],
10
+ products: [
11
+ .library(
12
13
+ targets: ["Spring"]
14
+ ),
15
16
+ targets: [
17
+ .target(
18
19
+ path: "Spring",
20
+ exclude: ["Info.plist"],
21
+ sources: ["."],
22
+ resources: [
23
+ // iOS resources
24
+ .process("*.xib"),
25
+ .process("../SpringApp/*.xcassets")
26
+ ]
27
+ )
28
29
+)
0 commit comments