You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
setLocale didn't work for me
using FingerprintAuth that is included in plugin
platform: android
ionic: 1.3.1
"name": "cordova-plugin-keychain-touch-id",
"version": "3.2.1",
window.plugins.touchid.isAvailable(function () {
window.plugins.touchid.has('XXXXXX', function () {
//Touch ID avaialble and Password key available
window.plugins.touchid.setLocale('ru_RU', function () {
window.plugins.touchid.verify('XXXXXX', $translate.instant('ATTACH_FINGER_TO_ENTER'), function (password) {
authorize();
}, function (err) {
console.log('canceled');
AppPopup.toast('ATTENTION', 'BIO_CANCELED_ENTER_PIN');
});
}, function (err) {
console.log('no locale');
})
}, function () {
//Touch ID available but no Password Key available
AppPopup.toast('ATTENTION', 'ENTER_PIN_TO_REGISTER_TOUCH_ID');
});
}, function (msg) {
//Touch ID not available
});
The text was updated successfully, but these errors were encountered:
@abbazer Currently only English and Spanish are implemented by this plugin. If you need a different language, then you have to add it. I have added the ones relevant to me (see #30). You would also have to call it with 'ru' only (not 'ru_RU').
setLocale didn't work for me
using FingerprintAuth that is included in plugin
platform: android
ionic: 1.3.1
"name": "cordova-plugin-keychain-touch-id",
"version": "3.2.1",
window.plugins.touchid.isAvailable(function () {
The text was updated successfully, but these errors were encountered: