From a88be5957955b0dea8b21d931a2797f423cea573 Mon Sep 17 00:00:00 2001 From: Vans Z <196425254@qq.com> Date: Sun, 29 Mar 2020 16:16:20 +0800 Subject: [PATCH] =?UTF-8?q?[M]=E4=BF=AE=E6=94=B9=E4=BE=9D=E8=B5=96?= =?UTF-8?q?=EF=BC=8C=E9=A2=84=E5=8F=91=E5=B8=83?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- GlideImageLoader/build.gradle | 4 +++- PicassoImageLoader/build.gradle | 4 +++- Transferee/build.gradle | 2 -- UniversalImageLoader/build.gradle | 4 +++- app/build.gradle | 3 +++ 5 files changed, 12 insertions(+), 5 deletions(-) diff --git a/GlideImageLoader/build.gradle b/GlideImageLoader/build.gradle index 6a9e44e..0fea05b 100644 --- a/GlideImageLoader/build.gradle +++ b/GlideImageLoader/build.gradle @@ -1,4 +1,6 @@ apply plugin: 'com.android.library' +apply plugin: 'com.github.dcendents.android-maven' +group='com.github.hitomi' android { compileSdkVersion rootProject.ext.compileSdkVersion @@ -27,5 +29,5 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation project(':Transferee') implementation libUtilCodex - api libGlide + implementation libGlide } diff --git a/PicassoImageLoader/build.gradle b/PicassoImageLoader/build.gradle index 40b8ad0..11d5661 100644 --- a/PicassoImageLoader/build.gradle +++ b/PicassoImageLoader/build.gradle @@ -1,4 +1,6 @@ apply plugin: 'com.android.library' +apply plugin: 'com.github.dcendents.android-maven' +group='com.github.hitomi' android { compileSdkVersion rootProject.ext.compileSdkVersion @@ -28,6 +30,6 @@ dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation project(':Transferee') implementation libUtilCodex - api libPicasso + implementation libPicasso } diff --git a/Transferee/build.gradle b/Transferee/build.gradle index 321782d..c5bbe0c 100644 --- a/Transferee/build.gradle +++ b/Transferee/build.gradle @@ -1,7 +1,5 @@ apply plugin: 'com.android.library' -// JitPack Maven apply plugin: 'com.github.dcendents.android-maven' -// Group group='com.github.hitomi' android { diff --git a/UniversalImageLoader/build.gradle b/UniversalImageLoader/build.gradle index 32a4b92..08a461d 100644 --- a/UniversalImageLoader/build.gradle +++ b/UniversalImageLoader/build.gradle @@ -1,4 +1,6 @@ apply plugin: 'com.android.library' +apply plugin: 'com.github.dcendents.android-maven' +group = 'com.github.hitomi' android { compileSdkVersion rootProject.ext.compileSdkVersion @@ -26,5 +28,5 @@ android { dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation project(':Transferee') - api libUniversal + implementation libUniversal } diff --git a/app/build.gradle b/app/build.gradle index b53b160..67de2d7 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -32,4 +32,7 @@ dependencies { implementation libBaseAdapter implementation libRecyclerviewAdpater implementation libUtilCodex + implementation libUniversal + implementation libGlide + implementation libPicasso }