diff --git a/README.md b/README.md index b72a7cc..1b94e8c 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ repositories { } 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' } ``` @@ -67,7 +67,7 @@ android { ... defaultConfig { ... - renderscriptTargetApi 21 + renderscriptTargetApi 22 renderscriptSupportModeEnabled true } } diff --git a/build.gradle b/build.gradle index 27dac07..95c3cdc 100644 --- a/build.gradle +++ b/build.gradle @@ -5,7 +5,7 @@ buildscript { jcenter() } 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' // NOTE: Do not place your application dependencies here; they belong diff --git a/example/build.gradle b/example/build.gradle index b7eb82c..3d5ffd3 100644 --- a/example/build.gradle +++ b/example/build.gradle @@ -53,9 +53,8 @@ def getKeyAliasPasswordProperty() { dependencies { compile project(':transformations') -// compile 'jp.wasabeef:glide-transformations:1.0.4' compile 'jp.co.cyberagent.android.gpuimage:gpuimage-library:1.2.3' - compile 'com.android.support:appcompat-v7:21.+' - compile 'com.android.support:recyclerview-v7:21.+' - compile 'com.github.bumptech.glide:glide:3.5.1' + compile 'com.android.support:appcompat-v7:22.2.0' + compile 'com.android.support:recyclerview-v7:22.2.0' + compile 'com.github.bumptech.glide:glide:3.6.1' } diff --git a/gradle.properties b/gradle.properties index 259e238..dc9ea5a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,12 +1,12 @@ -VERSION_NAME=1.0.6 -VERSION_CODE=6 +VERSION_NAME=1.0.7 +VERSION_CODE=7 GROUP=jp.wasabeef ARTIFACT_ID=glide-transformations -COMPILE_SDK_VERSION=21 -BUILD_TOOLS_VERSION=21.1.2 -TARGET_SDK_VERSION=21 -RENDERSCRIPT_TARGET_API=21 +COMPILE_SDK_VERSION=22 +BUILD_TOOLS_VERSION=22.0.1 +TARGET_SDK_VERSION=22 +RENDERSCRIPT_TARGET_API=22 MIN_SDK_VERSION=11 POM_DESCRIPTION=which provides simple Tranformations to Glide diff --git a/transformations/android-artifacts.gradle b/transformations/android-artifacts.gradle index f8d302d..bc64f23 100644 --- a/transformations/android-artifacts.gradle +++ b/transformations/android-artifacts.gradle @@ -1,6 +1,7 @@ task androidJavadocs(type: Javadoc) { 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) { diff --git a/transformations/build.gradle b/transformations/build.gradle index db198f7..0c993be 100644 --- a/transformations/build.gradle +++ b/transformations/build.gradle @@ -16,7 +16,7 @@ android { dependencies { 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' }