Issue #445
How to add SPM Run swift package init
Check enum for version for each platform https://developer.apple.com/documentation/swift_packages/supportedplatform/tvosversion
Example https://github.com/onmyway133/Anchors/blob/master/Package.swift
// swift-tools-version:5.1 import PackageDescription let package = Package( name: "Anchors", platforms: [ .macOS(.v10_11), .iOS(.v9), .tvOS(.v9) ], products: [ .library( name: "Anchors", targets: ["Anchors"]), ], targets: [ .target( name: "Anchors", dependencies: [], path: "Sources" ), .testTarget( name: "AnchorsTests", dependencies: ["Anchors"]), ], swiftLanguageVersions: [.v5] ) To test, swift test to test locally, this should validate Package....