Release notes v12.X
12.1.0
Features
- Added
UserClient#getIdToken()
method that return ID token for currently authenticated user. Refer to ID Token for more details.
Improvements
- Changed error thrown in
OneginiCustomRegistrationCallback
byreturnError(Exception e)
method. It used to throwGENERAL_ERROR
error withA generic error occurred during the registration action
message and optional Exception passed by the developer. With new version, same method will throwACTION_CANCELED
error withThe registration action was canceled by the user
message, with optional Exception passed by the developer.
12.0.0
Improvements
- Added support for biometric authentication with Android
BiometricPrompt
. Refer to biometric authentication page for instructions on how to implement new authenticator. Previous fingerprint authentication is now deprecated and will be removed in the next major release. Authenticator.FINGERPRINT
is now renamed toAuthenticator.BIOMETRIC
.- Android 14 support
- Updated third party libraries
Features
- Added new type of registration -
stateless registration
. Refer to stateless registration page for instructions on how to implement new feature.