Skip to content

Commit fe195d2

Browse files
committed
dependency updates
1 parent 2760e17 commit fe195d2

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

composeApp/build.gradle.kts

+3-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ plugins {
1313
}
1414

1515
kotlin {
16-
@OptIn(ExperimentalWasmDsl::class)
16+
jvmToolchain(17)
17+
18+
@OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl::class)
1719
wasmJs {
1820
moduleName = "composeApp"
1921
browser {

composeApp/src/androidMain/kotlin/dev/johnoreilly/climatetrace/MainActivity.kt

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ package dev.johnoreilly.climatetrace
55
import android.os.Bundle
66
import androidx.activity.ComponentActivity
77
import androidx.activity.compose.setContent
8+
import androidx.activity.enableEdgeToEdge
89
import androidx.compose.material3.ExperimentalMaterial3Api
910
import androidx.compose.material3.MaterialTheme
1011
import androidx.compose.runtime.Composable
@@ -15,6 +16,7 @@ import dev.johnoreilly.climatetrace.ui.CountryListScreen
1516
class MainActivity : ComponentActivity() {
1617

1718
override fun onCreate(savedInstanceState: Bundle?) {
19+
enableEdgeToEdge()
1820
super.onCreate(savedInstanceState)
1921

2022
initKoin(this)

0 commit comments

Comments
 (0)