From 428a093064ee238691ed512cac335174db14fbc1 Mon Sep 17 00:00:00 2001 From: Eugene Cheung Date: Tue, 22 Jan 2019 18:40:05 -0500 Subject: [PATCH] Slightly more logical dependency grouping --- app/build.gradle | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/app/build.gradle b/app/build.gradle index 0db482aa..39f6e8e1 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -120,6 +120,7 @@ dependencies { implementation "com.android.support:percent:$supportLibVersion" implementation "com.android.support:preference-v7:$supportLibVersion" implementation "com.android.support:preference-v14:$supportLibVersion" + implementation 'com.github.kabouzeid:app-theme-helper:1.3.10' implementation 'com.github.kabouzeid:RecyclerView-FastScroll:1.0.16-kmod' implementation 'com.github.kabouzeid:SeekArc:1.2-kmod' @@ -128,20 +129,25 @@ dependencies { implementation 'com.afollestad.material-dialogs:commons:0.9.6.0' implementation 'com.afollestad:material-cab:0.1.12' implementation 'com.github.ksoichiro:android-observablescrollview:1.6.0' - implementation 'com.squareup.retrofit2:retrofit:2.5.0' - implementation 'com.squareup.retrofit2:converter-gson:2.4.0' - implementation 'com.anjlab.android.iab.v3:library:1.0.44' - implementation 'de.psdev.licensesdialog:licensesdialog:1.8.3' - implementation 'com.github.bumptech.glide:glide:3.8.0' - implementation 'com.github.bumptech.glide:okhttp3-integration:1.5.0' implementation 'com.heinrichreimersoftware:material-intro:1.6.2' implementation 'me.zhanghai.android.materialprogressbar:library:1.4.2' - implementation 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5' - implementation 'com.jakewharton:butterknife:8.8.1' - implementation 'com.github.AdrienPoupa:jaudiotagger:2.2.3' implementation('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.11.0@aar') { transitive = true } - implementation 'com.google.code.gson:gson:2.8.5' + + implementation 'com.jakewharton:butterknife:8.8.1' annotationProcessor 'com.jakewharton:butterknife-compiler:8.8.1' + + implementation 'com.squareup.retrofit2:retrofit:2.5.0' + implementation 'com.squareup.retrofit2:converter-gson:2.4.0' + implementation 'com.google.code.gson:gson:2.8.5' + + implementation 'com.anjlab.android.iab.v3:library:1.0.44' + implementation 'de.psdev.licensesdialog:licensesdialog:1.8.3' + + implementation 'com.github.bumptech.glide:glide:3.8.0' + implementation 'com.github.bumptech.glide:okhttp3-integration:1.5.0' + implementation 'org.eclipse.mylyn.github:org.eclipse.egit.github.core:2.1.5' + + implementation 'com.github.AdrienPoupa:jaudiotagger:2.2.3' }