File tree Expand file tree Collapse file tree 2 files changed +6
-2
lines changed
src/commonMain/kotlin/presentation Expand file tree Collapse file tree 2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change 2
2
import org.jetbrains.compose.desktop.application.dsl.TargetFormat
3
3
import org.jetbrains.kotlin.gradle.dsl.JvmTarget
4
4
5
- val version = " 1.0.33 "
5
+ val version = " 1.0.34 "
6
6
val versionNumber = getVersionInt()
7
7
8
8
plugins {
@@ -86,6 +86,7 @@ android {
86
86
versionName = version
87
87
}
88
88
signingConfigs {
89
+ @Suppress(" unused" )
89
90
val release by creating {
90
91
storeFile = file(" ../keystore.jks" )
91
92
storePassword = System .getenv(" RELEASE_KEYSTORE_PASSWORD" )
@@ -94,6 +95,7 @@ android {
94
95
}
95
96
}
96
97
packaging {
98
+
97
99
resources {
98
100
excludes + = " /META-INF/{AL2.0,LGPL2.1}"
99
101
excludes + = " /META-INF/licenses/ASM"
@@ -113,6 +115,7 @@ android {
113
115
excludes + = " META-INF/notice.txt"
114
116
excludes + = " META-INF/INDEX.LIST"
115
117
excludes + = " META-INF/versions"
118
+ excludes + = " **/module-info.class"
116
119
}
117
120
}
118
121
buildTypes {
Original file line number Diff line number Diff line change 1
1
package presentation
2
2
3
3
import androidx.compose.foundation.layout.fillMaxSize
4
+ import androidx.compose.foundation.layout.systemBarsPadding
4
5
import androidx.compose.material.MaterialTheme
5
6
import androidx.compose.material.Surface
6
7
import androidx.compose.runtime.Composable
@@ -14,7 +15,7 @@ fun App() {
14
15
MaterialTheme {
15
16
MigrationProcessor {
16
17
Surface (
17
- modifier = Modifier .fillMaxSize(),
18
+ modifier = Modifier .fillMaxSize().systemBarsPadding() ,
18
19
color = AppColor .background(),
19
20
) {
20
21
Navigation ()
You can’t perform that action at this time.
0 commit comments