1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-06-07 14:54:05 +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
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
8 changed files with 19 additions and 10 deletions

View File

@ -1,6 +1,15 @@
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)*
----------------------------

View File

@ -32,7 +32,7 @@ repositories {
}
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
implementation 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.4.1'
}

View File

@ -28,9 +28,10 @@ android {
release {
debuggable false
zipAlignEnabled true
signingConfig signingConfigs.release
minifyEnabled true
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
ARTIFACT_ID=glide-transformations
@ -22,5 +22,5 @@ POM_DEVELOPER_URL=wasabeef.jp
ISSUE_URL=https://github.com/wasabeef/glide-transformations/issues
SUPPORT_PACKAGE_VERSION=27.0.2
GLIDE_VERSION=4.5.0
GLIDE_VERSION=4.6.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
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
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.
MAX_FD="maximum"
warn ( ) {
warn () {
echo "$*"
}
die ( ) {
die () {
echo
echo "$*"
echo
@ -155,7 +155,7 @@ if $cygwin ; then
fi
# Escape application args
save ( ) {
save () {
for i do printf %s\\n "$i" | sed "s/'/'\\\\''/g;1s/^/'/;\$s/\$/' \\\\/" ; done
echo " "
}

View File

@ -1,7 +1,7 @@
-dontwarn jp.co.cyberagent.android.gpuimage.**
-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$** {
**[] $VALUES;
public *;