Auth0 version: 3.1.0
React Native Version:0.73.6
Why is .auth0 being added to my scheme even though in build.gradle it’s just the applicationid
applicationId “au.com.glassplum.driver”
manifestPlaceholders = [auth0Domain: “auth.neurallogistix.io”, auth0Scheme: “${applicationId}”]
Log Entry - note the added “.auth0” to the scheme
“description”: “Callback URL mismatch. au.com.glassplum.driver.auth0://auth.neurallogistix.io/android/au.com.glassplum.driver/callback is not in the list of allowed callback URLs”,
If I add a URL with the auth0 in the app setup, i dont get mismatched URL, but after login, is stuck and not returning to the android app.
Allowed Call backs URL’s
au.com.glassplum.driver://auth.neurallogistix.io/android/au.com.glassplum.driver/callback, au.com.glassplum.driver.auth0://auth.neurallogistix.io/android/au.com.glassplum.driver/callback
I have to have the first one because the old version is still being used
Thanks