Extracted the in-app notifications from the Sample app target into its own Notifying package target.

This commit is contained in:
2026-07-05 13:33:07 +02:00
parent 6bcb88c944
commit 59b0237638
8 changed files with 278 additions and 106 deletions
+13 -1
View File
@@ -13,14 +13,26 @@ let package = Package(
products: [
.library(
name: "Features",
targets: ["Recording"]
targets: [
"Notifying",
"Recording",
]
),
],
targets: [
.target(
name: "Notifying",
path: "Sources/Notifying"
),
.target(
name: "Recording",
path: "Sources/Recording"
),
.testTarget(
name: "NotifyingTests",
dependencies: ["Notifying"],
path: "Tests/Notifying"
),
.testTarget(
name: "RecordingTests",
dependencies: ["Recording"],