diff --git a/app/build.gradle b/app/build.gradle index 52d88a6bc..3fce59107 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -16,8 +16,8 @@ android { applicationId 'org.koitharu.kotatsu' minSdk = 21 targetSdk = 34 - versionCode = 593 - versionName = '6.2.5' + versionCode = 594 + versionName = '6.2.6' generatedDensities = [] testInstrumentationRunner "org.koitharu.kotatsu.HiltTestRunner" ksp { @@ -82,11 +82,11 @@ afterEvaluate { } dependencies { //noinspection GradleDependency - implementation('com.github.KotatsuApp:kotatsu-parsers:4ca3a492b0') { + implementation('com.github.KotatsuApp:kotatsu-parsers:e9d473711d') { exclude group: 'org.json', module: 'json' } - implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.10' + implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.9.20' implementation 'org.jetbrains.kotlinx:kotlinx-coroutines-android:1.7.3' implementation 'androidx.appcompat:appcompat:1.6.1' @@ -119,8 +119,8 @@ dependencies { implementation 'androidx.room:room-ktx:2.6.0' ksp 'androidx.room:room-compiler:2.6.0' - implementation 'com.squareup.okhttp3:okhttp:4.11.0' - implementation 'com.squareup.okhttp3:okhttp-dnsoverhttps:4.11.0' + implementation 'com.squareup.okhttp3:okhttp:4.12.0' + implementation 'com.squareup.okhttp3:okhttp-dnsoverhttps:4.12.0' implementation 'com.squareup.okio:okio:3.6.0' implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.2' @@ -131,8 +131,8 @@ dependencies { implementation 'androidx.hilt:hilt-work:1.0.0' kapt 'androidx.hilt:hilt-compiler:1.0.0' - implementation 'io.coil-kt:coil-base:2.4.0' - implementation 'io.coil-kt:coil-svg:2.4.0' + implementation 'io.coil-kt:coil-base:2.5.0' + implementation 'io.coil-kt:coil-svg:2.5.0' implementation 'com.github.KotatsuApp:subsampling-scale-image-view:cf089a264d' implementation 'com.github.solkin:disk-lru-cache:1.4' implementation 'io.noties.markwon:core:4.6.2' @@ -143,7 +143,7 @@ dependencies { debugImplementation 'com.squareup.leakcanary:leakcanary-android:2.12' testImplementation 'junit:junit:4.13.2' - testImplementation 'org.json:json:20230618' + testImplementation 'org.json:json:20231013' testImplementation 'org.jetbrains.kotlinx:kotlinx-coroutines-test:1.7.3' androidTestImplementation 'androidx.test:runner:1.5.2' diff --git a/build.gradle b/build.gradle index d9e2a2600..0427a94d5 100644 --- a/build.gradle +++ b/build.gradle @@ -5,9 +5,9 @@ buildscript { } dependencies { classpath 'com.android.tools.build:gradle:8.1.2' - classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.10' + classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.20' classpath 'com.google.dagger:hilt-android-gradle-plugin:2.48.1' - classpath 'com.google.devtools.ksp:symbol-processing-gradle-plugin:1.9.10-1.0.13' + classpath 'com.google.devtools.ksp:symbol-processing-gradle-plugin:1.9.20-RC2-1.0.13' } }