diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 025392a..17e4369 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -42,6 +42,7 @@ implementation(libs.legacy.support.v4) implementation(libs.recyclerview) implementation(libs.retrofit2.retrofit) + implementation(libs.converter.jackson) testImplementation(libs.junit) androidTestImplementation(libs.ext.junit) androidTestImplementation(libs.espresso.core) diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index a61c67e..7db8943 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -11,6 +11,7 @@ recyclerview = "1.3.2" retrofit = "3.1.0-SNAPSHOT" retrofitVersion = "3.0.0" +converterJackson = "3.0.0" [libraries] junit = { group = "junit", name = "junit", version.ref = "junit" } @@ -24,6 +25,7 @@ recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" } retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" } retrofit2-retrofit = { group = "com.squareup.retrofit2", name = "retrofit", version.ref = "retrofitVersion" } +converter-jackson = { group = "com.squareup.retrofit2", name = "converter-jackson", version.ref = "converterJackson" } [plugins] android-application = { id = "com.android.application", version.ref = "agp" }