Fix reference to transcriptText state in WhisperApp() composable. Update .gitignore.

This commit is contained in:
2026-07-15 13:08:37 -04:00
parent 0825833a55
commit b73198260d
2 changed files with 74 additions and 16 deletions
+72 -14
View File
@@ -1,15 +1,73 @@
*.iml
.gradle
/local.properties
/.idea/caches
/.idea/libraries
/.idea/modules.xml
/.idea/workspace.xml
/.idea/navEditor.xml
/.idea/assetWizardSettings.xml
.DS_Store
/build
/captures
.externalNativeBuild
.cxx
# =========================================================================
# Android Build Artifacts & Gradle
# =========================================================================
.gradle/
build/
**/build/
*.apk
*.aar
*.aab
*.ap_
output-metadata.json
# Gradle local configuration
.gradle/
# Android Studio local history
.idea/localHistory/
# Crash logs
hs_err_pid*
replay_pid*
# =========================================================================
# Security & Secret Keys (Future-Proofing API Keys)
# =========================================================================
# This file stores your local SDK path and sensitive API keys
local.properties
# Keystores and signing keys (Never commit production certificates!)
*.jks
*.keystore
*.pk8
*.pem
google-services.json
# =========================================================================
# JetBrains / Android Studio / Kotlin / Java
# =========================================================================
# Ignore individual IDE noise, but allow core code styling and sharing
*.iml
*.iws
.idea/workspace.xml
.idea/tasks.xml
.idea/vcs.xml
.idea/dictionaries
.idea/libraries
.idea/caches
.idea/navEditor.xml
.idea/deploymentTargetDropDown.xml
.idea/deploymentTargetSelector.xml
.idea/androidTestResultsUserPreferences.xml
# Kotlin specific temporary compiler directories
.kotlin/
# Java specific binary class outputs (if you add Java later)
*.class
# =========================================================================
# C++ / NDK Build Artifacts (Future-Proofing Native Code)
# =========================================================================
.cxx/
externalNativeBuild/
obj/
# =========================================================================
# Miscellaneous & System Junk
# =========================================================================
*.log
captures/
.DS_Store
Thumbs.db
@@ -375,7 +375,7 @@ fun WhisperApp(
horizontalAlignment = Alignment.CenterHorizontally
) {
Text(
text = transcriptText,
text = "Transcription",
style = MaterialTheme.typography.headlineMedium,
fontWeight = FontWeight.Bold,
modifier = Modifier.padding(bottom = 16.dp)
@@ -388,7 +388,7 @@ fun WhisperApp(
.verticalScroll(rememberScrollState())
) {
Text(
text = "Transcription will appear here...",
text = transcriptText,
style = MaterialTheme.typography.bodyLarge
)
}