From 3a9d0def7d63a0018d8a40896b702884dfc3ec2f Mon Sep 17 00:00:00 2001 From: Koitharu Date: Tue, 18 Jul 2023 10:13:46 +0300 Subject: [PATCH] Update parsers --- app/build.gradle | 14 +++++++------- build.gradle | 2 +- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 94310c22c..051ac38d5 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -17,8 +17,8 @@ android { //TODO: update as soon as sources becomes available //noinspection OldTargetApi targetSdkVersion 33 - versionCode 562 - versionName '5.3.5' + versionCode 563 + versionName '5.3.6' generatedDensities = [] testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" @@ -81,7 +81,7 @@ afterEvaluate { } dependencies { //noinspection GradleDependency - implementation('com.github.KotatsuApp:kotatsu-parsers:db96a1ff2e') { + implementation('com.github.KotatsuApp:kotatsu-parsers:a1598fd712') { exclude group: 'org.json', module: 'json' } @@ -127,8 +127,8 @@ dependencies { implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl:4.3.2' implementation 'com.hannesdorfmann:adapterdelegates4-kotlin-dsl-viewbinding:4.3.2' - implementation 'com.google.dagger:hilt-android:2.46.1' - kapt 'com.google.dagger:hilt-compiler:2.46.1' + implementation 'com.google.dagger:hilt-android:2.47' + kapt 'com.google.dagger:hilt-compiler:2.47' implementation 'androidx.hilt:hilt-work:1.0.0' kapt 'androidx.hilt:hilt-compiler:1.0.0' @@ -157,6 +157,6 @@ dependencies { androidTestImplementation 'androidx.room:room-testing:2.5.2' androidTestImplementation 'com.squareup.moshi:moshi-kotlin:1.15.0' - androidTestImplementation 'com.google.dagger:hilt-android-testing:2.46.1' - kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.46.1' + androidTestImplementation 'com.google.dagger:hilt-android-testing:2.47' + kaptAndroidTest 'com.google.dagger:hilt-android-compiler:2.47' } diff --git a/build.gradle b/build.gradle index f0ec27d8a..4f5a72761 100644 --- a/build.gradle +++ b/build.gradle @@ -6,7 +6,7 @@ buildscript { dependencies { classpath 'com.android.tools.build:gradle:8.0.2' classpath 'org.jetbrains.kotlin:kotlin-gradle-plugin:1.8.22' - classpath 'com.google.dagger:hilt-android-gradle-plugin:2.46.1' + classpath 'com.google.dagger:hilt-android-gradle-plugin:2.47' } }