Samsung Galaxy Note 4 fingerprint not found

I am working on an application where I am using a fingerprint. Everything seems to be good, but when I debug my application,

fingerprintManager.isHardwareDetected()

      

returns false. Why?

FingerprintManager fingerprintManager = (FingerprintManager) getSystemService(FINGERPRINT_SERVICE);

if(!fingerprintManager.isHardwareDetected()){
    textView.setText("Your Device does not have a Fingerprint Sensor");
}

      

I read several answers on Stack Vverflow that the Note4 fingerprint issue is an old phone and it doesn't support FingerprintManager. This is problem? Is there a workaround?

Thank!

0


source to share


1 answer


Note4 does not support Android fingerprint API.



You must use Samsung's own PASS SDK: http://developer.samsung.com/galaxy/pass

+1


source







All Articles