Skip to main content

version v1.6.0

· One min read

React Native V1.6.0

  • Support for 3DS
  • Performance improvements for Biometrics & Login
  • Bug fixed related to Apple Push Notification Service (code change needed)
  • Following two functions return type has been changed from string to boolean.
    • checkIsReadyForEnrollment
    • checkReadyForAuth
if (isIOS) {
checkIsReadyForEnrollment()
.then((res) => {
dLog("enrolment ready: " + res);
if (res) {
startEnrollment(fcmToken!, globalToken!)
.then((res) => {
dLog(res);
Toast.show(res, 1);
})
.catch((e) => {
dLog(e);
Toast.show(e.toString(), 1);
});
} else {
Toast.show("You are not ready for Enrolment", 1);
}
})
.catch((e) => {
dLog(e);
Toast.show(e.toString(), 1);
});
} else {
startEnrolment(fcmToken!, globalToken!)
.then((res) => {
dLog(res);
Toast.show(res, 1);
})
.catch((e) => {
dLog(e);
Toast.show(e.toString(), 1);
});
}