1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-10-04 18:03:21 +08:00
* update gradle wrapeer

* fix proguard settings

* update glide

* bump up 3.1.1
This commit is contained in:
Daichi Furiya
2018-02-13 16:32:10 +09:00
committed by GitHub
parent a5f7017f57
commit 9b00767304
8 changed files with 19 additions and 10 deletions

View File

@@ -1,6 +1,15 @@
Change Log Change Log
========== ==========
Version 3.1.1 *(2018-02-13)*
----------------------------
Update:
- Glide 4.5.0 -> 4.6.1
Bug Fix:
- Fix settings fot proguard.
Version 3.1.0 *(2018-01-26)* Version 3.1.0 *(2018-01-26)*
---------------------------- ----------------------------

View File

@@ -32,7 +32,7 @@ repositories {
} }
dependencies { dependencies {
implementation 'jp.wasabeef:glide-transformations:3.1.0' implementation 'jp.wasabeef:glide-transformations:3.1.1'
// If you want to use the GPU Filters // If you want to use the GPU Filters
implementation 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.4.1' implementation 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.4.1'
} }

View File

@@ -28,9 +28,10 @@ android {
release { release {
debuggable false debuggable false
zipAlignEnabled true zipAlignEnabled true
signingConfig signingConfigs.release
minifyEnabled true minifyEnabled true
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
shrinkResources true
signingConfig signingConfigs.release
} }
} }
} }

View File

@@ -1,4 +1,4 @@
VERSION_NAME=3.1.0 VERSION_NAME=3.1.1
GROUP=jp.wasabeef GROUP=jp.wasabeef
ARTIFACT_ID=glide-transformations ARTIFACT_ID=glide-transformations
@@ -22,5 +22,5 @@ POM_DEVELOPER_URL=wasabeef.jp
ISSUE_URL=https://github.com/wasabeef/glide-transformations/issues ISSUE_URL=https://github.com/wasabeef/glide-transformations/issues
SUPPORT_PACKAGE_VERSION=27.0.2 SUPPORT_PACKAGE_VERSION=27.0.2
GLIDE_VERSION=4.5.0 GLIDE_VERSION=4.6.1
GPUIMAGE_VERSION=1.4.1 GPUIMAGE_VERSION=1.4.1

Binary file not shown.

View File

@@ -1,6 +1,5 @@
#Thu Jan 25 11:48:25 JST 2018
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-all.zip distributionUrl=https\://services.gradle.org/distributions/gradle-4.3-bin.zip

6
gradlew vendored
View File

@@ -33,11 +33,11 @@ DEFAULT_JVM_OPTS=""
# Use the maximum available, or set MAX_FD != -1 to use that value. # Use the maximum available, or set MAX_FD != -1 to use that value.
MAX_FD="maximum" MAX_FD="maximum"
warn ( ) { warn () {
echo "$*" echo "$*"
} }
die ( ) { die () {
echo echo
echo "$*" echo "$*"
echo echo
@@ -155,7 +155,7 @@ if $cygwin ; then
fi fi
# Escape application args # Escape application args
save ( ) { save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " " echo " "
} }

View File

@@ -1,7 +1,7 @@
-dontwarn jp.co.cyberagent.android.gpuimage.** -dontwarn jp.co.cyberagent.android.gpuimage.**
-keep public class * implements com.bumptech.glide.module.GlideModule -keep public class * implements com.bumptech.glide.module.GlideModule
-keep public class * extends com.bumptech.glide.AppGlideModule -keep public class * extends com.bumptech.glide.module.AppGlideModule
-keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** { -keep public enum com.bumptech.glide.load.resource.bitmap.ImageHeaderParser$** {
**[] $VALUES; **[] $VALUES;
public *; public *;