Skip to content

Commit 6a3d87f

Browse files
authored
V1
1 parent c1b65f6 commit 6a3d87f

36 files changed

+2113
-789
lines changed

.swiftpm/xcode/xcshareddata/xcschemes/ALCoordinator.xcscheme

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,34 @@
3434
ReferencedContainer = "container:">
3535
</BuildableReference>
3636
</BuildActionEntry>
37+
<BuildActionEntry
38+
buildForTesting = "YES"
39+
buildForRunning = "YES"
40+
buildForProfiling = "YES"
41+
buildForArchiving = "YES"
42+
buildForAnalyzing = "YES">
43+
<BuildableReference
44+
BuildableIdentifier = "primary"
45+
BlueprintIdentifier = "SUICoordinator"
46+
BuildableName = "SUICoordinator"
47+
BlueprintName = "SUICoordinator"
48+
ReferencedContainer = "container:">
49+
</BuildableReference>
50+
</BuildActionEntry>
51+
<BuildActionEntry
52+
buildForTesting = "YES"
53+
buildForRunning = "YES"
54+
buildForProfiling = "YES"
55+
buildForArchiving = "YES"
56+
buildForAnalyzing = "YES">
57+
<BuildableReference
58+
BuildableIdentifier = "primary"
59+
BlueprintIdentifier = "UIKCoordinator"
60+
BuildableName = "UIKCoordinator"
61+
BlueprintName = "UIKCoordinator"
62+
ReferencedContainer = "container:">
63+
</BuildableReference>
64+
</BuildActionEntry>
3765
</BuildActionEntries>
3866
</BuildAction>
3967
<TestAction

Package.swift

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,8 @@ let package = Package(
1111
.library(
1212
name: "ALCoordinator",
1313
targets: [
14-
"ALCoordinator",
14+
"SUICoordinator",
15+
"UIKCoordinator"
1516
]
1617
),
1718
],
@@ -23,12 +24,16 @@ let package = Package(
2324
// Targets are the basic building blocks of a package. A target can define a module or a test suite.
2425
// Targets can depend on other targets in this package, and on products in packages this package depends on.
2526
.target(
26-
name: "ALCoordinator",
27+
name: "SUICoordinator",
28+
dependencies: ["UIKCoordinator"]
29+
),
30+
.target(
31+
name: "UIKCoordinator",
2732
dependencies: []
2833
),
2934
.testTarget(
3035
name: "CoordinatorTests",
31-
dependencies: ["ALCoordinator"]
36+
dependencies: ["SUICoordinator", "UIKCoordinator"]
3237
),
3338
],
3439
swiftLanguageVersions: [.v5]

0 commit comments

Comments
 (0)