Skip to content

Commit cdfff69

Browse files
renovate: update minor-updates
1 parent eaa2d1a commit cdfff69

File tree

5 files changed

+12
-12
lines changed

5 files changed

+12
-12
lines changed

androidApp/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ plugins {
88
id("com.android.application")
99
id("com.github.triplet.play") version "3.8.4"
1010
kotlin("android")
11-
id("com.google.devtools.ksp") version "1.9.0-1.0.13"
11+
id("com.google.devtools.ksp") version "1.9.10-1.0.13"
1212
}
1313

1414
private val versionProperty by lazy {

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ buildscript {
88
mavenCentral()
99
}
1010
dependencies {
11-
val kotlinVersion = "1.9.0"
11+
val kotlinVersion = "1.9.10"
1212
classpath("com.android.tools.build:gradle:8.1.1")
1313
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:${kotlinVersion}")
1414
classpath("org.jetbrains.kotlin:kotlin-serialization:${kotlinVersion}")

buildSrc/src/main/java/Versions.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,19 @@ object Versions {
44
const val koinDi = "3.4.3"
55
const val orbitMvi = "4.5.0"
66
const val mokoMvvm = "0.16.1"
7-
const val ktor = "2.3.3"
7+
const val ktor = "2.3.4"
88
const val settings = "1.0.0"
9-
const val realm = "1.10.2" // Also update belonging plugin in shared/build.gradle.kts
9+
const val realm = "1.11.1" // Also update belonging plugin in shared/build.gradle.kts
1010

1111
// Android
1212
const val androidMinSdk = 24
1313
const val androidTargetSdk = 33
1414
const val androidCompileSdk = 34
1515
const val androidBuildTools = "34.0.0"
1616

17-
const val compose = "1.5.0"
18-
const val composeCompiler = "1.5.1"
19-
const val androidxLifecycle = "2.6.1"
20-
const val composeDestinations = "1.9.52"
17+
const val compose = "1.5.1"
18+
const val composeCompiler = "1.5.3"
19+
const val androidxLifecycle = "2.6.2"
20+
const val composeDestinations = "1.9.53"
2121
const val camera = "1.2.3"
2222
}

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ include(":androidApp")
1818
include(":shared")
1919

2020
plugins {
21-
id("org.danilopianini.gradle-pre-commit-git-hooks") version "1.1.9"
21+
id("org.danilopianini.gradle-pre-commit-git-hooks") version "1.1.10"
2222
}
2323

2424
gitHooks {

shared/build.gradle.kts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ plugins {
1515
id("co.touchlab.faktory.kmmbridge") version "0.3.7"
1616
`maven-publish`
1717
id("dev.jamiecraane.plugins.kmmresources") version "1.0.0-alpha11" // Shared localization
18-
id("io.realm.kotlin") version "1.10.2"
18+
id("io.realm.kotlin") version "1.11.1"
1919
}
2020

2121
version = "1.0" // Shared package has only 2 digit version, patch is managed by kmmbridge.
@@ -68,8 +68,8 @@ kotlin {
6868
implementation("com.russhwolf:multiplatform-settings-coroutines:${Versions.settings}")
6969

7070
// Helper
71-
api("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0")
72-
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.1") // Also needed by android for ComposeDestination parameter serialization
71+
api("org.jetbrains.kotlinx:kotlinx-datetime:0.4.1")
72+
api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.6.0") // Also needed by android for ComposeDestination parameter serialization
7373
}
7474
}
7575
val commonTest by getting {

0 commit comments

Comments
 (0)