Code Monkey home page Code Monkey logo

Comments (4)

DanielLeushuis avatar DanielLeushuis commented on June 24, 2024 1

The docs (https://developer.apple.com/documentation/localauthentication/lapolicy/lapolicydeviceownerauthenticationwithbiometrics?language=objc) says 'To let the system handle the fallback option by asking for the device passcode (in iOS or watchOS) or the user’s password (in macOS), use the LAPolicyDeviceOwnerAuthentication policy instead.'

I will try changing LAPolicyDeviceOwnerAuthenticationWithBiometrics to LAPolicyDeviceOwnerAuthentication in TouchID.m. I will report back another day.

from cordova-plugin-touch-id.

cvinodhkumar77 avatar cvinodhkumar77 commented on June 24, 2024

I am also facing the same issue. Its working fine in iPhone6 OS version 10 but not in iPhone6+ OS version 12

from cordova-plugin-touch-id.

DanielLeushuis avatar DanielLeushuis commented on June 24, 2024

Thanks for adding information. I can only test iOS 11+ since my Capacitor is configured like that now.

from cordova-plugin-touch-id.

DanielLeushuis avatar DanielLeushuis commented on June 24, 2024

It had something to do with LAPolicyDeviceOwnerAuthentication but not by simply replacing the policies in the TouchID.m file.

This repo fixes the issues described above: https://github.com/didux-io/cordova-plugin-touch-id. I have also requested a pull for this repo.

Package on npm: https://www.npmjs.com/package/@didux-io/cordova-plugin-touch-id

Behavior now:

  1. User will be prompted for finger print if available
  2. User will be prompted for passcode or fingerprint after one failed finger print attempt
  3. User will be prompted for only the passcode if the fingerprint is disabled or if the fingerprint has been disabled by too many misuses.

I highly recommend using this package aswell: https://ionicframework.com/docs/native/pin-check with https://ionicframework.com/docs/native/open-native-settings

That library will check if the user has no passcode and provides you ways to navigate the user to set one, example code to use with that library:

import { PinCheck } from '@ionic-native/pin-check/ngx';
import { TouchID } from '@ionic-native/touch-id/ngx';
import { Platform } from '@ionic/angular';

.....

pinSetup = true;

constructor(
    private platform: Platform,
    private pinCheck: PinCheck,
    private touchId: TouchID
) {
      
}

openSecuritySettings() {
    if (this.platform.is('android')) {
        this.openNativeSettings.open('security');
    } else if (this.platform.is('ios')) {
        this.openNativeSettings.open('touch');
    }
}

checkLockScreenEnabled() {
    this.pinCheck.isPinSetup().then(
        () => {
           this.pinSetup = true;
        }, () => {
            this.pinSetup = false;
        }
    );
}

.....

from cordova-plugin-touch-id.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    πŸ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. πŸ“ŠπŸ“ˆπŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❀️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.