From 07f11f38057b9c8e88191d93d45f3bc72848d629 Mon Sep 17 00:00:00 2001 From: Nono3551 Date: Thu, 18 Jun 2020 12:47:07 +0200 Subject: [PATCH] Transitive libraries --- app/build.gradle | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 3f0bf2f..91666d7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -40,11 +40,15 @@ dependencies { implementation 'androidx.core:core-ktx:1.3.0' implementation 'androidx.appcompat:appcompat:1.1.0' - implementation 'com.google.code.gson:gson:2.8.5' + implementation ('com.google.code.gson:gson:2.8.5@aar') { + transitive=true + } - implementation ('com.github.bumptech.glide:glide:4.11.0') { + implementation ('com.github.bumptech.glide:glide:4.11.0@aar') { transitive=true } - implementation 'com.android.volley:volley:1.1.1' + implementation ('com.android.volley:volley:1.1.1@aar') { + transitive=true + } } \ No newline at end of file