4cae1b8bb8
Foundation milestone for Live Activities & Widgets (design/apple-live- activities-and-widgets.md). No user-visible change beyond the URL scheme. - New dependency-free PunktfunkShared SwiftPM target (+ library product) so a future widget extension can link it WITHOUT PunktfunkKit (Rust staticlib + presentation layer). Moves StoredHost (model + JSON codec), DefaultsKeys, and punktfunkDefaultMgmtPort there; adds AppGroup.suiteName and the punktfunk:// DeepLink builder/parser. PunktfunkKit @_exported-imports it (no call-site churn for consumers; intra-Kit files import it explicitly since imports are file-scoped). - HostStore reads/writes the shared App-Group suite (group.io.unom.punktfunk) with a one-time migration from UserDefaults.standard (old value left in place for staged rollout); reloads the "PunktfunkHosts" widget timeline on change. - App Group entitlement on iOS/tvOS + macOS. - CFBundleURLTypes scheme `punktfunk`; ContentView.onOpenURL routes connect/<uuid>[?launch=<GameEntry.id>] into the existing connect() path (unknown host / already-streaming guards; never tears down a live session). - Round-trip tests: StoredHost JSON codec (+ legacy missing-optional decode), DeepLink grammar. `swift build` + `swift test` green (142 tests, 0 failures). Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
24 lines
1.3 KiB
Swift
24 lines
1.3 KiB
Swift
// The App-Group foundation shared by the app and its extensions (Widgets / Live Activity).
|
|
//
|
|
// PunktfunkShared is deliberately dependency-free: it links NEITHER PunktfunkKit (which drags in
|
|
// the Rust staticlib + presentation layer) NOR any Apple UI framework. A widget process gets ~30 MB,
|
|
// so everything an extension needs — the stored-host model + its JSON codec, the settings-key names,
|
|
// the deep-link grammar, and (later) the Live Activity attributes — lives here and here only.
|
|
|
|
import Foundation
|
|
|
|
/// The one App-Group identifier, matched by `Config/*.entitlements`
|
|
/// (`com.apple.security.application-groups`). Registered on the developer portal for both the app
|
|
/// id (`io.unom.punktfunk`) and the widget extension id (`io.unom.punktfunk.widgets`).
|
|
public enum AppGroup {
|
|
public static let suiteName = "group.io.unom.punktfunk"
|
|
|
|
/// The shared defaults suite. Non-nil in a correctly-entitled process; falls back to
|
|
/// `.standard` if the group is somehow unavailable (unsigned `swift run`, a misprovisioned
|
|
/// build) so the app still functions single-process rather than crashing — the widget just
|
|
/// won't see the same store there.
|
|
public static var defaults: UserDefaults {
|
|
UserDefaults(suiteName: suiteName) ?? .standard
|
|
}
|
|
}
|