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"
minSdk = 26
targetSdk = 34
versionCode = 19
versionName = "0.1.18"
versionCode = 20
versionName = "0.1.19"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables.useSupportLibrary = true

View File

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