feat: Simple bluetooth status indication

This commit is contained in:
2026-06-07 18:27:33 +01:00
commit 61bf63fd14
9 changed files with 125 additions and 0 deletions

24
Package.swift Normal file
View File

@@ -0,0 +1,24 @@
// swift-tools-version: 6.0
import PackageDescription
let package = Package(
name: "ScoobyTag",
platforms: [
.iOS(.v15),
.macOS(.v14),
],
products: [
// An xtool project should contain exactly one library product,
// representing the main app.
.library(
name: "ScoobyTag",
targets: ["ScoobyTag"]
),
],
targets: [
.target(
name: "ScoobyTag"
),
]
)