diff --git a/app/build.gradle.kts b/app/build.gradle.kts index efd7422..2791464 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -35,7 +35,6 @@ } dependencies { - implementation(libs.appcompat) implementation(libs.material) implementation(libs.activity) @@ -45,4 +44,5 @@ testImplementation(libs.junit) androidTestImplementation(libs.ext.junit) androidTestImplementation(libs.espresso.core) + implementation(libs.retrofit) } \ No newline at end of file diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index efc9070..cbc4758 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -9,6 +9,7 @@ constraintlayout = "2.2.0" legacySupportV4 = "1.0.0" recyclerview = "1.3.2" +retrofit = "3.1.0-SNAPSHOT" [libraries] junit = { group = "junit", name = "junit", version.ref = "junit" } @@ -20,6 +21,7 @@ constraintlayout = { group = "androidx.constraintlayout", name = "constraintlayout", version.ref = "constraintlayout" } legacy-support-v4 = { group = "androidx.legacy", name = "legacy-support-v4", version.ref = "legacySupportV4" } recyclerview = { group = "androidx.recyclerview", name = "recyclerview", version.ref = "recyclerview" } +retrofit = { module = "com.squareup.retrofit2:retrofit", version.ref = "retrofit" } [plugins] android-application = { id = "com.android.application", version.ref = "agp" }