// swift-tools-version: 5.9 // ByteLystPlatformSDK — Shared Swift platform client for all ByteLyst iOS/watchOS/macOS apps. // Lives in learning_ai_common_plat so every product app references ONE source of truth. import PackageDescription let package = Package( name: "ByteLystPlatformSDK", platforms: [ .iOS(.v17), .watchOS(.v10), .macOS(.v14), ], products: [ .library( name: "ByteLystPlatformSDK", targets: ["ByteLystPlatformSDK"] ), ], targets: [ .target( name: "ByteLystPlatformSDK", path: "Sources" ), .testTarget( name: "ByteLystPlatformSDKTests", dependencies: ["ByteLystPlatformSDK"], path: "Tests" ), ] )