Zac Sweers
06/27/2024, 7:07 PM@main
struct FieldSpottrApp: App {
init() {
if let key = BuildConfig.shared.BUGSNAG_NOTIFIER_KEY {
Bugsnag.start(withApiKey: key)
let config = BugsnagConfiguration(_: key)
BugsnagConfigKt.startBugsnag(config: config)
}
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Zac Sweers
06/27/2024, 7:08 PMZac Sweers
06/27/2024, 7:08 PMTadeas Kriz
06/28/2024, 2:10 PM