Skip to content

Commit e417dcb

Browse files
author
root
committed
Fix: noCompress rootfs tarball, fix OnboardingScreen Row horizontalAlignment
1 parent e05c203 commit e417dcb

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

app/build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ android {
4949
compose = true
5050
}
5151

52+
aaptOptions {
53+
noCompress += listOf("gz")
54+
}
55+
5256
packaging {
5357
resources {
5458
excludes += "/META-INF/{AL2.0,LGPL2.1}"

app/src/main/java/com/debiandroid/desktop/ui/screens/OnboardingScreen.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ fun OnboardingScreen(onGetStarted: () -> Unit) {
5656
// Page indicator dots
5757
Row(
5858
modifier = Modifier.fillMaxWidth().padding(bottom = 24.dp),
59-
horizontalAlignment = Alignment.CenterHorizontally,
59+
horizontalArrangement = Arrangement.Center,
6060
verticalAlignment = Alignment.CenterVertically
6161
) {
6262
repeat(3) { index ->

0 commit comments

Comments
 (0)