Skip to content

Commit

Permalink
gradle plugin 0.11.1, gradle version 1.12, build tools 19.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
keyboardsurfer committed Jun 24, 2014
1 parent e5fdf30 commit ea228fb
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ version = '1.8.4'
}

dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.android.tools.build:gradle:0.11.1'
classpath 'com.github.dcendents:android-maven-plugin:1.0'
}
}
Expand All @@ -37,5 +37,5 @@ version = '1.8.4'

task wrapper(type: Wrapper) {
description "Generates the gradle wrapper"
gradleVersion = "1.11"
gradleVersion = "1.12"
}
6 changes: 3 additions & 3 deletions library/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ dependencies {
}

android {
buildToolsVersion '19.0.3'
buildToolsVersion '19.1.0'
compileSdkVersion 19
defaultConfig {
versionCode 7
Expand All @@ -42,13 +42,13 @@ artifactId = "crouton"

android.libraryVariants.all { variant ->
def name = variant.buildType.name
if (name.equals(com.android.builder.BuilderConstants.DEBUG)) {
if (name.equals(com.android.builder.core.BuilderConstants.DEBUG)) {
return; // Skip debug builds.
}
task("javadoc${variant.name.capitalize()}", type: Javadoc) {
description "Generates Javadoc for $variant.name."
source = variant.javaCompile.source
ext.androidJar = "${android.plugin.sdkDirectory}/platforms/${android.compileSdkVersion}/android.jar"
ext.androidJar = "${android.sdkDirectory}/platforms/${android.compileSdkVersion}/android.jar"
classpath = files(variant.javaCompile.classpath.files) + files(ext.androidJar)
}

Expand Down
2 changes: 1 addition & 1 deletion sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ dependencies {
}

android {
buildToolsVersion '19.0.3'
buildToolsVersion '19.1.0'
compileSdkVersion 19

defaultConfig {
Expand Down

0 comments on commit ea228fb

Please sign in to comment.