Skip to content

Commit

Permalink
Update the gradle files
Browse files Browse the repository at this point in the history
Use the newest gradle versions and also the latest build Android build
tools.
  • Loading branch information
cgollner committed Nov 21, 2014
1 parent 6efacab commit bf422a3
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -5,7 +5,7 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.android.tools.build:gradle:0.13.2'
}
}

Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
@@ -1,6 +1,6 @@
#Tue Apr 22 17:23:54 EEST 2014
#Wed Nov 19 01:12:25 WET 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-2.1-all.zip
8 changes: 4 additions & 4 deletions sample/build.gradle
Expand Up @@ -3,18 +3,18 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.android.tools.build:gradle:0.13.2'
}
}
apply plugin: 'android'
apply plugin: 'com.android.application'

repositories {
mavenCentral()
}

android {
compileSdkVersion 18
buildToolsVersion "19.0.3"
compileSdkVersion 21
buildToolsVersion "21.1.1"

buildTypes {
release {
Expand Down
8 changes: 4 additions & 4 deletions src/build.gradle
Expand Up @@ -3,18 +3,18 @@ buildscript {
mavenCentral()
}
dependencies {
classpath 'com.android.tools.build:gradle:0.9.+'
classpath 'com.android.tools.build:gradle:0.13.2'
}
}
apply plugin: 'android-library'
apply plugin: 'com.android.library'

repositories {
mavenCentral()
}

android {
compileSdkVersion 18
buildToolsVersion "19.0.3"
compileSdkVersion 21
buildToolsVersion "21.1.1"

buildTypes {
release {
Expand Down

0 comments on commit bf422a3

Please sign in to comment.