6489340b2e
- Add OSGKeyboardLiveActivity widget extension (ActivityKit) with branded compactLeading mark in the Dynamic Island during Flow sessions - Wire FlowLiveActivityController into FlowSessionManager lifecycle - Set keyboard PrimaryLanguage to mis in project.yml, Info.plist, and at runtime - Enable NSSupportsLiveActivities on main app and widget extension targets Co-authored-by: Rocky <hkgood@users.noreply.github.com>
13 lines
233 B
Swift
13 lines
233 B
Swift
// OSGKeyboardLiveActivityBundle.swift
|
|
// OSGKeyboard · Live Activity
|
|
|
|
import SwiftUI
|
|
import WidgetKit
|
|
|
|
@main
|
|
struct OSGKeyboardLiveActivityBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
FlowLiveActivityWidget()
|
|
}
|
|
}
|