Removed authentication successful message

This commit is contained in:
Nicolás Sánchez 2025-03-08 20:55:57 -03:00
parent 8ca752f256
commit 46f7f1fa95
1 changed files with 1 additions and 1 deletions

View File

@ -188,7 +188,7 @@ public class MainActivity extends AppCompatActivity {
@Override
public void onAuthenticationSucceeded(@NonNull BiometricPrompt.AuthenticationResult result) {
super.onAuthenticationSucceeded(result);
Toast.makeText(getApplicationContext(), "Authentication succeeded!", Toast.LENGTH_SHORT).show();
//Toast.makeText(getApplicationContext(), "Authentication succeeded!", Toast.LENGTH_SHORT).show();
isAuthenticated = true;
initializeApp();
}