Change title in the alert on iOS using weblogin

hello everybody

I’m using Auth0 iOS SDK, and the weblogin this way:

 Auth0
        .webAuth()
        .scope("openid email")
        .audience(values.audience)
        .connection(connection)
        .start {
            switch $0 {
            case .failure(let error):
                // Handle the error
                print("Error: \(error)")
            case .success(let credentials):
                // Do something with credentials e.g.: save them.
                // Auth0 will automatically dismiss the login page
                print("Credentials: \(credentials)")

                self.getEmail(credentials, completion: completion)
            }
    }

I want to know how can I change the “paytouch” to something other in the iOS alert before webview is shown?

Per (ios - Requirement to change app name in google sign in alert - Stack Overflow) it seems this would be controlled by the bundle name.

2 Likes

This topic was automatically closed 15 days after the last reply. New replies are no longer allowed.