Auto-commit after successful build: update app gameplay/UI, improve build setup

Changed files:\napp/build.gradle.kts
app/src/main/java/com/kawomi/githugandroid/GitHugApp.kt
This commit is contained in:
Joe Tretter
2026-04-23 09:09:04 -05:00
parent 24a1a0b252
commit c0ea54c784
2 changed files with 3 additions and 5 deletions

View File

@@ -11,8 +11,8 @@ android {
applicationId = "com.kawomi.githugandroid" applicationId = "com.kawomi.githugandroid"
minSdk = 26 minSdk = 26
targetSdk = 34 targetSdk = 34
versionCode = 19 versionCode = 20
versionName = "0.1.18" versionName = "0.1.19"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true vectorDrawables.useSupportLibrary = true

View File

@@ -727,8 +727,7 @@ private fun VisualPane(repo: RepoState) {
} else { } else {
Column( Column(
modifier = Modifier modifier = Modifier
.fillMaxWidth() .fillMaxWidth(),
.verticalScroll(rememberScrollState()),
verticalArrangement = Arrangement.spacedBy(10.dp), verticalArrangement = Arrangement.spacedBy(10.dp),
) { ) {
InfoPaneCard( InfoPaneCard(
@@ -814,7 +813,6 @@ private fun InfoPaneCard(
content, content,
color = TextSecondary, color = TextSecondary,
fontFamily = FontFamily.Monospace, fontFamily = FontFamily.Monospace,
modifier = Modifier.verticalScroll(rememberScrollState()),
) )
} }
} }