Stabilize iOS/watchOS/tvOS apps and add cross-platform audit remediation

This commit is contained in:
Trey t
2026-02-11 12:54:40 -06:00
parent e40275e694
commit acce712261
77 changed files with 2940 additions and 765 deletions

35
SharedCore/Package.swift Normal file
View File

@@ -0,0 +1,35 @@
// swift-tools-version: 5.9
import PackageDescription
let package = Package(
name: "SharedCore",
platforms: [
.iOS(.v16),
.watchOS(.v9),
.tvOS(.v16),
.macOS(.v13)
],
products: [
.library(
name: "SharedCore",
targets: ["SharedCore"]
)
],
targets: [
.target(
name: "SharedCore"
),
.testTarget(
name: "SharedCoreiOSTests",
dependencies: ["SharedCore"]
),
.testTarget(
name: "SharedCoreWatchOSTests",
dependencies: ["SharedCore"]
),
.testTarget(
name: "SharedCoreTVOSTests",
dependencies: ["SharedCore"]
)
]
)