Updated the AndroidManifest.xml to stop the default function exit call upon screen rotation and just have it remain inside the "startRecording" function.

This commit is contained in:
2026-01-26 15:38:34 +11:00
parent ac7d51b46e
commit 2a8f004916
2 changed files with 3 additions and 1 deletions

View File

@@ -11,7 +11,7 @@ android {
applicationId = "net.mmanningau.speechtokeyboard"
minSdk = 28
targetSdk = 36
versionCode = 11
versionCode = 12
versionName = "1.1"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"

View File

@@ -37,6 +37,8 @@
<activity
android:name=".TestModelActivity"
android:parentActivityName=".MainActivity"
android:exported="false"
android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
android:label="Test Microphone" />
</application>