Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to register Fingerprint for Authentication on Nexus emulator

there is no response after I typed adb -s emulator-5554 emu finger touch 1. this is reference link https://github.com/googlesamples/android-FingerprintDialog/issues/2

like image 635
Dipali C Avatar asked Dec 18 '22 23:12

Dipali C


1 Answers

Open Security Settings on your Fingerprint Emulation enabled Emulator. According to Android Developers Documentation, Register 1 or 2 fingerprints with command

adb -e emu finger touch 1

or

adb -e emu finger touch 2

and save the settings. Next time when you are prompted for the Fingerprint Authentication again enter the same command

adb -e emu finger touch 1

to successfully authenticate. I just tried and it works fine.

like image 189
Rajkiran Avatar answered Jan 07 '23 13:01

Rajkiran