Skip to main content
CorbadoObserve records native authentication events for Observe. Your application keeps control of authentication and explicitly reports flow boundaries, method attempts and outcomes.

Requirements

An iOS 15 or later app and a Swift 6 toolchain. Initialize in the main app; app extensions are not supported.
1

Add the Swift package

In Xcode, choose File → Add Package Dependencies and enter:
Select version 0.1.0 or a compatible published release, then add the CorbadoObserve product to your app target. See releases for available versions.
2

Initialize explicitly

Retain the optional tracker in your app. A disabled or unsuccessful initialization must not prevent your authentication flow from running. No Observe API key is needed in the app.
3

Report flow boundaries

When the login screen becomes visible:
After your identity system confirms a successful login:
Add method-level operations between these boundaries. The SDK example demonstrates native instrumentation. The shared event model explains flows and attempts; method signatures differ by platform.

Native capture boundaries

Native screens require explicit instrumentation. Field observers accept lengths and focus changes supplied by your app. iOS does not expose the password AutoFill suggestion bar’s visibility to the SDK; a bulk field change can provide heuristic evidence of a fill. Do not treat it as a confirmed platform event. Web-based authentication components use the web capture approach.

Runtime controls and verification

Collection and transport are separate controls: stopping transport alone does not stop collection. Decide when to initialize and enable collection in your application’s lifecycle. Verify that the expected flow and method attempts reach Observe, including failed attempts and the eventual outcome. See verification and the SDK source for native configuration and examples.