diff --git a/app/build.gradle b/app/build.gradle index 968fff0..22edf18 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -41,6 +41,7 @@ dependencies { implementation libs.navigation.fragment implementation libs.navigation.ui implementation libs.gson + implementation libs.recyclerview //implementation libs.okhttp implementation libs.okhttp.v492 implementation libs.firebase.crashlytics.buildtools diff --git a/gradle/libs.versions.toml b/gradle/libs.versions.toml index 45f70b3..01d3964 100644 --- a/gradle/libs.versions.toml +++ b/gradle/libs.versions.toml @@ -14,6 +14,7 @@ gson = "2.11.0" firebaseCrashlyticsBuildtools = "3.0.2" okhttp = "3.14.6" okhttpVersion = "4.9.2" +recyclerview = "1.3.2" [libraries] junit = { group = "junit", name = "junit", version.ref = "junit" } @@ -30,6 +31,7 @@ gson = { group = "com.google.code.gson", name = "gson", version.ref = "gson" } firebase-crashlytics-buildtools = { group = "com.google.firebase", name = "firebase-crashlytics-buildtools", version.ref = "firebaseCrashlyticsBuildtools" } okhttp = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttp" } okhttp-v492 = { module = "com.squareup.okhttp3:okhttp", version.ref = "okhttpVersion" } +recyclerview = { module = "androidx.recyclerview:recyclerview", version.ref = "recyclerview" } [plugins] android-application = { id = "com.android.application", version.ref = "agp" }