From eed7b944e5495f33735fa6af49654b19102d9b49 Mon Sep 17 00:00:00 2001 From: fujiwara-satoru Date: Mon, 14 Sep 2015 20:54:40 +0900 Subject: [PATCH 1/2] Change gpuimage's scope to provided. --- transformations/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/transformations/build.gradle b/transformations/build.gradle index 10be9d3..7bb4bd1 100644 --- a/transformations/build.gradle +++ b/transformations/build.gradle @@ -16,7 +16,7 @@ android { dependencies { compile "com.github.bumptech.glide:glide:${GLIDE_VERSION}" - compile "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}" + provided "jp.co.cyberagent.android.gpuimage:gpuimage-library:${GPUIMAGE_VERSION}" } android.libraryVariants.all { variant -> @@ -39,4 +39,4 @@ android.libraryVariants.all { variant -> apply from: 'android-artifacts.gradle' apply from: 'central-publish.gradle' -apply from: 'bintray-publish.gradle' \ No newline at end of file +apply from: 'bintray-publish.gradle' From efc447d2f72b9d7104979dc786cf17d6912ac70a Mon Sep 17 00:00:00 2001 From: Daichi Furiya Date: Tue, 15 Sep 2015 15:12:11 +0900 Subject: [PATCH 2/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5c77265..f7df5f8 100644 --- a/README.md +++ b/README.md @@ -54,7 +54,7 @@ You can set a multiple transformations. ```java Glide.with(this).load(R.drawable.demo) - .bitmapTransform(new BlurTransformation(context, 25, 2), new CropCircleTransformation(pool)) + .bitmapTransform(new BlurTransformation(context, 25, 2), new CropCircleTransformation(context)) .into((ImageView) findViewById(R.id.image)); ```