mirror of
https://github.com/topjohnwu/Magisk.git
synced 2024-12-01 05:55:26 +00:00
Fix crashes on Lollipop
This commit is contained in:
parent
2fe35d578d
commit
0dcd073554
@ -18,7 +18,7 @@ import javax.crypto.KeyGenerator;
|
|||||||
import javax.crypto.SecretKey;
|
import javax.crypto.SecretKey;
|
||||||
|
|
||||||
@TargetApi(Build.VERSION_CODES.M)
|
@TargetApi(Build.VERSION_CODES.M)
|
||||||
public abstract class FingerprintHelper extends FingerprintManager.AuthenticationCallback {
|
public abstract class FingerprintHelper {
|
||||||
|
|
||||||
private FingerprintManager manager;
|
private FingerprintManager manager;
|
||||||
private Cipher cipher;
|
private Cipher cipher;
|
||||||
@ -54,10 +54,38 @@ public abstract class FingerprintHelper extends FingerprintManager.Authenticatio
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public abstract void onAuthenticationError(int errorCode, CharSequence errString);
|
||||||
|
|
||||||
|
public abstract void onAuthenticationHelp(int helpCode, CharSequence helpString);
|
||||||
|
|
||||||
|
public abstract void onAuthenticationSucceeded(FingerprintManager.AuthenticationResult result);
|
||||||
|
|
||||||
|
public abstract void onAuthenticationFailed();
|
||||||
|
|
||||||
public void startAuth() {
|
public void startAuth() {
|
||||||
cancel = new CancellationSignal();
|
cancel = new CancellationSignal();
|
||||||
FingerprintManager.CryptoObject cryptoObject = new FingerprintManager.CryptoObject(cipher);
|
FingerprintManager.CryptoObject cryptoObject = new FingerprintManager.CryptoObject(cipher);
|
||||||
manager.authenticate(cryptoObject, cancel, 0, this, null);
|
manager.authenticate(cryptoObject, cancel, 0, new FingerprintManager.AuthenticationCallback() {
|
||||||
|
@Override
|
||||||
|
public void onAuthenticationError(int errorCode, CharSequence errString) {
|
||||||
|
FingerprintHelper.this.onAuthenticationError(errorCode, errString);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onAuthenticationHelp(int helpCode, CharSequence helpString) {
|
||||||
|
FingerprintHelper.this.onAuthenticationHelp(helpCode, helpString);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onAuthenticationSucceeded(FingerprintManager.AuthenticationResult result) {
|
||||||
|
FingerprintHelper.this.onAuthenticationSucceeded(result);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onAuthenticationFailed() {
|
||||||
|
FingerprintHelper.this.onAuthenticationFailed();
|
||||||
|
}
|
||||||
|
}, null);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void cancel() {
|
public void cancel() {
|
||||||
|
Loading…
Reference in New Issue
Block a user