Skip to content

Commit 39eec11

Browse files
committed
Update versions
1 parent 13af52b commit 39eec11

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

composeApp/build.gradle.kts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
33
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
44

5-
val version = "1.0.33"
5+
val version = "1.0.34"
66
val versionNumber = getVersionInt()
77

88
plugins {
@@ -86,6 +86,7 @@ android {
8686
versionName = version
8787
}
8888
signingConfigs {
89+
@Suppress("unused")
8990
val release by creating {
9091
storeFile = file("../keystore.jks")
9192
storePassword = System.getenv("RELEASE_KEYSTORE_PASSWORD")
@@ -94,6 +95,7 @@ android {
9495
}
9596
}
9697
packaging {
98+
9799
resources {
98100
excludes += "/META-INF/{AL2.0,LGPL2.1}"
99101
excludes += "/META-INF/licenses/ASM"
@@ -113,6 +115,7 @@ android {
113115
excludes += "META-INF/notice.txt"
114116
excludes += "META-INF/INDEX.LIST"
115117
excludes += "META-INF/versions"
118+
excludes += "**/module-info.class"
116119
}
117120
}
118121
buildTypes {

composeApp/src/commonMain/kotlin/presentation/App.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
package presentation
22

33
import androidx.compose.foundation.layout.fillMaxSize
4+
import androidx.compose.foundation.layout.systemBarsPadding
45
import androidx.compose.material.MaterialTheme
56
import androidx.compose.material.Surface
67
import androidx.compose.runtime.Composable
@@ -14,7 +15,7 @@ fun App() {
1415
MaterialTheme {
1516
MigrationProcessor {
1617
Surface(
17-
modifier = Modifier.fillMaxSize(),
18+
modifier = Modifier.fillMaxSize().systemBarsPadding(),
1819
color = AppColor.background(),
1920
) {
2021
Navigation()

0 commit comments

Comments
 (0)