diff --git a/mobile/android/app/src/main/java/com/pedshub/scribe/MainActivity.java b/mobile/android/app/src/main/java/com/pedshub/scribe/MainActivity.java index cda4419..85ddc5d 100644 --- a/mobile/android/app/src/main/java/com/pedshub/scribe/MainActivity.java +++ b/mobile/android/app/src/main/java/com/pedshub/scribe/MainActivity.java @@ -39,16 +39,6 @@ public class MainActivity extends BridgeActivity { // Setup WebView mic permission granting setupWebViewPermissions(); - // Show biometric prompt if available and user has used the app before - SharedPreferences prefs = getSharedPreferences("pedscribe", MODE_PRIVATE); - boolean hasLaunched = prefs.getBoolean("has_launched", false); - if (hasLaunched) { - showBiometricPrompt(); - } else { - prefs.edit().putBoolean("has_launched", true).apply(); - biometricDone = true; - } - // Register JS interface for foreground service control setupRecordingBridge(); }