Last active
October 29, 2016 16:44
-
-
Save flschweiger/b972eb3f4f7b26b155760d16a8128d71 to your computer and use it in GitHub Desktop.
FingerprintManager authentication.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fingerprintManager = (FingerprintManager) | |
getSystemService(Context.FINGERPRINT_SERVICE); | |
fingerprintManager.authenticate( | |
@Nullable FingerprintManager.CryptoObject cryptoObject, | |
@Nullable CancellationSignal cancelSignal, | |
0 /* optional flags - should be 0 */, | |
FingerprintManager.AuthenticationCallback callback, | |
@Nullable Handler handler); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment