Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.quepass.com/llms.txt

Use this file to discover all available pages before exploring further.

Call Quepass.initSDK once you have the license string (e.g. app launch or settings screen), before Quepass.capture

Code

import QuepassIdentityKit 

 

Quepass.initSDK( 

    licenseGridLicenseKey: "<payload.signature>", 

    licensePayloadBundleId: "global" 

) { ok, output in 

    guard ok else { 

        if let e = output.errors?.first { 

            print(e.message, e.details) 

        } 

        return 

    } 

    // Ready for capture 

}
Call Quepass.initSDK once at app launch and ensure it succeeds before triggering any capture flow to avoid initialization errors.