Jump to content
Sign in to follow this  
kangboy

After successful verification using BiometricAuth, the system exits

Recommended Posts

I am using version 12.1 of Delphi, android 10,and the code is as follows:

procedure TForm1.BiometricAuth1AuthenticateFail(Sender: TObject;
  const FailReason: TBiometricFailReason; const ResultMessage: string);
begin
   Label1.Text:='fail'
end;

procedure TForm1.BiometricAuth1AuthenticateSuccess(Sender: TObject);
begin
   Label1.Text:='OK'
end;

procedure TForm1.Button1Click(Sender: TObject);
begin
   BiometricAuth1.Authenticate;
end;

but,After using the correct fingerprint, the program will not return to the successful verification process and will exit directly. Debugging with breakpoints cannot be traced because the program exits directly at this point,please help,thanks。

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
Sign in to follow this  

×