forked from fritob/Camper-Monitor
Nach dem Entfernen der Beispiel-Widget/-Control-Dateien enthielt
VanControlWidget(Extension) nur noch die Live Activity – der Name war
damit irreführend. Jetzt VanControlLiveActivity(Extension) durchgängig:
Ordner, Target, Produkt, Bundle-ID-Suffix, Dateien
(VanControlLiveActivity.swift, VanControlLiveActivityBundle.swift) und
Anzeigename ("VanControl Live Activity").
Build (App Debug+Release, Watch) und Protokoll-Tests grün.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
17 lines
284 B
Swift
17 lines
284 B
Swift
//
|
|
// VanControlLiveActivityBundle.swift
|
|
// VanControlLiveActivity
|
|
//
|
|
// Created by Christopher Helberg on 02.09.26.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct VanControlLiveActivityBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
VanControlLiveActivity()
|
|
}
|
|
}
|