Samsung galaxy note 4 fingerprint not found

与世无争的帅哥 提交于 2019-12-12 03:39:15

问题


I am working on an app where I use fingerprint. Everything seems to be good but when I debug my app,

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 have read some answers on Stack Vverflow that there is a problem with the Note4 fingerprint - it is an old phone and it does not support the FingerprintManager. Is this the problem? Is there any workaround?

Thank you!


回答1:


Note4 don't support Android Fingerprint API.

You have to use Samsung proprietary PASS SDK: http://developer.samsung.com/galaxy/pass



来源:https://stackoverflow.com/questions/43333140/samsung-galaxy-note-4-fingerprint-not-found

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!