Auth0 lock callback not called

We are using Auth0 lock for our Android mobile application. Below are the details.
Lock version 2.23.0
minSdkVersion 23
targetSdkVersion 29
We are using “Email/Password, Enterprise & Social authentication”

Steps we followed,

  1. Configured the callback url in below format in Auth0 Portal. But this didn’t work for us.
    https://{YOUR_AUTH0_DOMAIN}/android/{YOUR_APP_PACKAGE_NAME}/callback

  2. Configured the callback url in below format in Auth0 Portal. But this also didn’t work for us
    YOUR_APP_PACKAGE_NAME://{YOUR_AUTH0_DOMAIN}/android/{YOUR_APP_PACKAGE_NAME}/callback
    We did below configuration in android client.

  3. Declared manifest holder values

  4. Initialized auth0 with client id, domain and config domain

  5. OIDC enabled

  6. Declared lock activity in manifest

  7. Initiated the Lock builder to show the widget

  8. Implemented the AuthenticationCallback methods

Issue:
By following the above steps we are able to receive 2 AuthenticationCallback methods “onAuthentication” and “onCanceled” but we are not getting the “onError” callback with exception details
Can someone look at this with highest priority and let us know, as this is blocking our release.

Thanks,
Uday