aboutsummaryrefslogtreecommitdiff
path: root/app/build.gradle
diff options
context:
space:
mode:
authorClyhtsuriva <aimeric@adjutor.xyz>2021-02-22 20:03:25 +0100
committerClyhtsuriva <aimeric@adjutor.xyz>2021-02-22 20:03:25 +0100
commit4012256bf91ccf02eb1871229f755beb26dad3de (patch)
treeae8521428bdde7750294d25c8e49a93df9e95f26 /app/build.gradle
parent893c9110c99cff286011e3d35acb39ba65a97476 (diff)
parent494455de615340599cf2cdba0f3f199a47bf5a66 (diff)
Merge branch 'feature/elements_detail' into developrelease/2.0
Diffstat (limited to 'app/build.gradle')
-rw-r--r--app/build.gradle12
1 files changed, 8 insertions, 4 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 4a23638..d1d101c 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -45,11 +45,12 @@ dependencies {
androidTestImplementation 'androidx.test.ext:junit:1.1.2'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.3.0'
- //Recycleview
+ //Recycleview for lists
implementation "androidx.recyclerview:recyclerview:1.1.0"
- //Retrofit
- implementation 'com.squareup.retrofit2:retrofit:2.6.0'
- implementation 'com.squareup.retrofit2:converter-gson:2.6.0'
+
+ //Retrofit for REST APIs
+ implementation 'com.squareup.retrofit2:retrofit:2.9.0'
+ implementation 'com.squareup.retrofit2:converter-gson:2.9.0'
// Required for local unit tests (JUnit 4 framework)
testImplementation 'junit:junit:4.13.2'
@@ -58,5 +59,8 @@ dependencies {
androidTestImplementation 'com.android.support:support-annotations:28.0.0'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
+ //Glide to display images properly
+ implementation 'com.github.bumptech.glide:glide:4.12.0'
+ annotationProcessor 'com.github.bumptech.glide:compiler:4.12.0'
} \ No newline at end of file