File tree 4 files changed +9
-5
lines changed
src/androidMain/kotlin/dev/johnoreilly/climatetrace
4 files changed +9
-5
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ plugins {
13
13
}
14
14
15
15
kotlin {
16
- @OptIn(ExperimentalWasmDsl ::class )
16
+ jvmToolchain(17 )
17
+
18
+ @OptIn(org.jetbrains.kotlin.gradle.ExperimentalWasmDsl ::class )
17
19
wasmJs {
18
20
moduleName = " composeApp"
19
21
browser {
Original file line number Diff line number Diff line change @@ -5,6 +5,7 @@ package dev.johnoreilly.climatetrace
5
5
import android.os.Bundle
6
6
import androidx.activity.ComponentActivity
7
7
import androidx.activity.compose.setContent
8
+ import androidx.activity.enableEdgeToEdge
8
9
import androidx.compose.material3.ExperimentalMaterial3Api
9
10
import androidx.compose.material3.MaterialTheme
10
11
import androidx.compose.runtime.Composable
@@ -15,6 +16,7 @@ import dev.johnoreilly.climatetrace.ui.CountryListScreen
15
16
class MainActivity : ComponentActivity () {
16
17
17
18
override fun onCreate (savedInstanceState : Bundle ? ) {
19
+ enableEdgeToEdge()
18
20
super .onCreate(savedInstanceState)
19
21
20
22
initKoin(this )
Original file line number Diff line number Diff line change @@ -4,13 +4,13 @@ ksp = "2.0.20-1.0.25"
4
4
kotlinx-coroutines = " 1.9.0"
5
5
6
6
7
- agp = " 8.5.2 "
7
+ agp = " 8.7.0 "
8
8
android-compileSdk = " 34"
9
9
android-minSdk = " 24"
10
10
android-targetSdk = " 34"
11
11
androidx-activityCompose = " 1.9.2"
12
- compose = " 1.7.2 "
13
- compose-plugin = " 1.7.0-beta02 "
12
+ compose = " 1.7.3 "
13
+ compose-plugin = " 1.7.0-rc01 "
14
14
composeAdaptiveLayout = " 1.0.0-alpha01"
15
15
harawata-appdirs = " 1.2.2"
16
16
koalaplot = " 0.5.3"
Original file line number Diff line number Diff line change 1
1
distributionBase =GRADLE_USER_HOME
2
2
distributionPath =wrapper/dists
3
- distributionUrl =https\://services.gradle.org/distributions/gradle-8.8 -bin.zip
3
+ distributionUrl =https\://services.gradle.org/distributions/gradle-8.9 -bin.zip
4
4
networkTimeout =10000
5
5
validateDistributionUrl =true
6
6
zipStoreBase =GRADLE_USER_HOME
You can’t perform that action at this time.
0 commit comments