Skip to main content

React Native Components v1.6.0

· One min read

React Native v1.6.0

  • Support for 3DS3DS 3-D Secure - an additional security layer for online credit and debit card transactions. It adds an authentication step where the cardholder verifies their identity with the card issuer during the purchase, reducing fraud and providing liability protection for merchants.
  • 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);
});
}