Skip to content

Commit

Permalink
updated dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
DatL4g committed Apr 19, 2023
1 parent da8c9a4 commit 35ba808
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 19 deletions.
21 changes: 9 additions & 12 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
@@ -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")
Expand All @@ -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
Expand All @@ -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
Expand Down Expand Up @@ -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")

Expand All @@ -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")
Expand All @@ -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")
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions datastore-codegen/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"
}
}
2 changes: 1 addition & 1 deletion model/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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")
}
Expand Down
2 changes: 1 addition & 1 deletion network/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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"

Expand Down

0 comments on commit 35ba808

Please sign in to comment.