Skip to content

Instantly share code, notes, and snippets.

@colinfwren
Created November 29, 2024 23:18
Show Gist options
  • Save colinfwren/fd61fbd47ce58e9557bb2b70498c8d68 to your computer and use it in GitHub Desktop.
Save colinfwren/fd61fbd47ce58e9557bb2b70498c8d68 to your computer and use it in GitHub Desktop.
App init with PostHog
import SwiftUI
import PostHog
@main
struct YourApp: App {
init () {
let POSTHOG_API_KEY = ""
let POSTHOG_HOST = ""
let config = PostHogConfig(apiKey: POSTHOG_API_KEY, host: POSTHOG_HOST)
PostHogSDK.shared.setup(config)
}
var body: some Scene {
WindowGroup {
ContentView()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment