From 35ba808a8b437f11864ee1fe694593c37d62fe0b Mon Sep 17 00:00:00 2001 From: DatLag Date: Wed, 19 Apr 2023 23:43:10 +0200 Subject: [PATCH] updated dependencies --- app/build.gradle.kts | 21 +++++++++------------ build.gradle.kts | 4 ++-- datastore-codegen/build.gradle.kts | 6 +++--- model/build.gradle.kts | 2 +- network/build.gradle.kts | 2 +- 5 files changed, 16 insertions(+), 19 deletions(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 028ff565..528927e9 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -1,8 +1,5 @@ import org.jetbrains.compose.desktop.application.dsl.TargetFormat -dependencies { - implementation("io.ktor:ktor-client-okhttp-jvm:2.2.4") -} plugins { kotlin("multiplatform") kotlin("plugin.serialization") @@ -19,10 +16,10 @@ val decompose = "1.0.0" val kodein = "7.20.1" // don't use 2.2.4, serialization not working val ktor = "2.2.3" -val exoplayer = "1.0.0" +val exoplayer = "1.0.1" val accompanist = "0.30.1" -val javafx = "20" +val javafx = "20.0.1" val javafxModules = listOf( "javafx.base", "javafx.graphics", // depends on base @@ -33,8 +30,8 @@ val javafxModules = listOf( ) val artifact = "dev.datlag.burningseries" -val appVersion = "4.5.2" -val appCode = 452 +val appVersion = "4.6.0" +val appCode = 460 group = artifact version = appVersion @@ -66,8 +63,8 @@ kotlin { api("io.ktor:ktor-serialization-kotlinx-json:$ktor") api("com.squareup.okhttp3:okhttp-dnsoverhttps:4.10.0") - implementation("com.mikepenz:aboutlibraries-compose:10.6.1") - implementation("com.mikepenz:aboutlibraries-core:10.6.1") + implementation("com.mikepenz:aboutlibraries-compose:10.6.2") + implementation("com.mikepenz:aboutlibraries-core:10.6.2") implementation("dnsjava:dnsjava:3.5.2") @@ -83,8 +80,8 @@ kotlin { dependencies { implementation("androidx.appcompat:appcompat:1.6.1") implementation("androidx.core:core-ktx:1.10.0") - implementation("androidx.activity:activity-ktx:1.7.0") - implementation("androidx.activity:activity-compose:1.7.0") + implementation("androidx.activity:activity-ktx:1.7.1") + implementation("androidx.activity:activity-compose:1.7.1") runtimeOnly("androidx.compose.material3:material3:1.0.1") implementation("androidx.multidex:multidex:2.0.1") implementation("org.jetbrains.kotlinx:kotlinx-coroutines-android:$coroutines") @@ -95,7 +92,7 @@ kotlin { implementation("com.google.accompanist:accompanist-flowlayout:$accompanist") implementation("androidx.constraintlayout:constraintlayout:2.1.4") implementation("com.google.android.material:material:1.8.0") - implementation("androidx.core:core-splashscreen:1.0.0") + implementation("androidx.core:core-splashscreen:1.0.1") implementation("androidx.media3:media3-exoplayer:$exoplayer") implementation("androidx.media3:media3-exoplayer-dash:$exoplayer") diff --git a/build.gradle.kts b/build.gradle.kts index 40de0fc1..ce6ae349 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -6,11 +6,11 @@ plugins { kotlin("multiplatform") version "1.8.10" apply false kotlin("plugin.serialization") version "1.8.10" apply false kotlin("android") version "1.8.10" apply false - id("org.jetbrains.compose") version "1.3.1" apply false + id("org.jetbrains.compose") version "1.4.0" apply false id("com.google.devtools.ksp") version "1.8.10-1.0.9" apply false id("com.google.protobuf") version "0.9.2" apply false id("com.squareup.sqldelight") version "1.5.5" apply false - id("com.mikepenz.aboutlibraries.plugin") version "10.6.1" apply false + id("com.mikepenz.aboutlibraries.plugin") version "10.6.2" apply false id("de.jensklingenberg.ktorfit") version "1.0.0" apply false id("com.google.osdetector") version "1.7.3" apply false id("com.github.ben-manes.versions") version "0.46.0" diff --git a/datastore-codegen/build.gradle.kts b/datastore-codegen/build.gradle.kts index e4a7cb7a..b7371d0f 100644 --- a/datastore-codegen/build.gradle.kts +++ b/datastore-codegen/build.gradle.kts @@ -6,12 +6,12 @@ plugins { group = "dev.datlag.burningseries.datastore-codegen" dependencies { - api("com.google.protobuf:protobuf-java:3.22.2") - api("io.grpc:grpc-protobuf:1.53.0") + api("com.google.protobuf:protobuf-java:3.22.3") + api("io.grpc:grpc-protobuf:1.54.1") } protobuf { protoc { - artifact = "com.google.protobuf:protoc:3.22.2" + artifact = "com.google.protobuf:protoc:3.22.3" } } diff --git a/model/build.gradle.kts b/model/build.gradle.kts index 185c3044..9b62a8c2 100644 --- a/model/build.gradle.kts +++ b/model/build.gradle.kts @@ -17,7 +17,7 @@ kotlin { sourceSets { val commonMain by getting { dependencies { - api("com.arkivanov.essenty:parcelable:1.0.0") + api("com.arkivanov.essenty:parcelable:1.1.0") api("org.jetbrains.kotlinx:kotlinx-serialization-json:1.5.0") api("org.jetbrains.kotlinx:kotlinx-datetime:0.4.0") } diff --git a/network/build.gradle.kts b/network/build.gradle.kts index 899e00da..920b09de 100644 --- a/network/build.gradle.kts +++ b/network/build.gradle.kts @@ -9,7 +9,7 @@ plugins { group = "dev.datlag.burningseries.network" val flower = "3.0.0" -val ktorfit = "1.0.1" +val ktorfit = "1.1.0" val jsoup = "1.15.4" val coroutines = "1.6.4"