Your app must be associated with your website to use Passkeys. This requires proper configuration of Associated Domains and .well-known files.
Complete the enablement of passkeys for native apps.
import OwnIDCoreSDK@mainstruct YourApp: App { init() { // will be used in the user agent string let info: OwnID.CoreSDK.SDKInformation = ( name: "<YourAppName>", version: "<YourAppVersion>" ) OwnID.CoreSDK.configure(userFacingSDK: info) } var body: some Scene { WindowGroup { ContentView() } }}