1
0
mirror of https://github.com/wasabeef/glide-transformations.git synced 2025-06-10 00:24:36 +08:00
This commit is contained in:
wasabeef 2015-07-18 00:18:08 +09:00
parent 79e975d490
commit e9d2c6d209
6 changed files with 15 additions and 15 deletions

View File

@ -32,7 +32,7 @@ repositories {
} }
dependencies { dependencies {
compile 'jp.wasabeef:glide-transformations:1.0.6@aar' compile 'jp.wasabeef:glide-transformations:1.0.7@aar'
compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3@aar' compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3@aar'
} }
``` ```
@ -67,7 +67,7 @@ android {
... ...
defaultConfig { defaultConfig {
... ...
renderscriptTargetApi 21 renderscriptTargetApi 22
renderscriptSupportModeEnabled true renderscriptSupportModeEnabled true
} }
} }

View File

@ -5,7 +5,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:1.0.+' classpath 'com.android.tools.build:gradle:1.2.3'
classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0' classpath 'com.jfrog.bintray.gradle:gradle-bintray-plugin:1.0'
// NOTE: Do not place your application dependencies here; they belong // NOTE: Do not place your application dependencies here; they belong

View File

@ -53,9 +53,8 @@ def getKeyAliasPasswordProperty() {
dependencies { dependencies {
compile project(':transformations') compile project(':transformations')
// compile 'jp.wasabeef:glide-transformations:1.0.4'
compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3' compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3'
compile 'com.android.support:appcompat-v7:21.+' compile 'com.android.support:appcompat-v7:22.2.0'
compile 'com.android.support:recyclerview-v7:21.+' compile 'com.android.support:recyclerview-v7:22.2.0'
compile 'com.github.bumptech.glide:glide:3.5.1' compile 'com.github.bumptech.glide:glide:3.6.1'
} }

View File

@ -1,12 +1,12 @@
VERSION_NAME=1.0.6 VERSION_NAME=1.0.7
VERSION_CODE=6 VERSION_CODE=7
GROUP=jp.wasabeef GROUP=jp.wasabeef
ARTIFACT_ID=glide-transformations ARTIFACT_ID=glide-transformations
COMPILE_SDK_VERSION=21 COMPILE_SDK_VERSION=22
BUILD_TOOLS_VERSION=21.1.2 BUILD_TOOLS_VERSION=22.0.1
TARGET_SDK_VERSION=21 TARGET_SDK_VERSION=22
RENDERSCRIPT_TARGET_API=21 RENDERSCRIPT_TARGET_API=22
MIN_SDK_VERSION=11 MIN_SDK_VERSION=11
POM_DESCRIPTION=which provides simple Tranformations to Glide POM_DESCRIPTION=which provides simple Tranformations to Glide

View File

@ -1,6 +1,7 @@
task androidJavadocs(type: Javadoc) { task androidJavadocs(type: Javadoc) {
source = android.sourceSets.main.java.srcDirs source = android.sourceSets.main.java.srcDirs
classpath += project.files(android.getBootClasspath().join(File.pathSeparator)) ext.androidJar = "${android.sdkDirectory}/platforms/${android.compileSdkVersion}/android.jar"
classpath += files(ext.androidJar)
} }
task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) { task androidJavadocsJar(type: Jar, dependsOn: androidJavadocs) {

View File

@ -16,7 +16,7 @@ android {
dependencies { dependencies {
compile fileTree(dir: 'libs', include: ['*.jar']) compile fileTree(dir: 'libs', include: ['*.jar'])
compile 'com.github.bumptech.glide:glide:3.5.1' compile 'com.github.bumptech.glide:glide:3.6.1'
compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3' compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3'
} }