Skip to content

Commit

Permalink
Update gradle (close #24)
Browse files Browse the repository at this point in the history
  • Loading branch information
johnkil committed May 7, 2014
1 parent a701a05 commit ec8a927
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 19 deletions.
8 changes: 1 addition & 7 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ buildscript {
}

dependencies {
classpath 'com.android.tools.build:gradle:0.8.+'
classpath 'com.android.tools.build:gradle:0.10.+'
}
}

Expand All @@ -16,13 +16,7 @@ allprojects {
version = VERSION_NAME
group = GROUP

androidCompileSdk = 19
androidToolsVersion = '19'
appMsgVersionCode = 4
appMsgVersionName = VERSION_NAME

repositories {
mavenLocal()
mavenCentral()
}
}
Expand Down
4 changes: 2 additions & 2 deletions gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#Sat Feb 08 21:39:23 PST 2014
#Wed May 07 11:40:46 MSK 2014
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-all.zip
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip
8 changes: 3 additions & 5 deletions library/build.gradle
Original file line number Diff line number Diff line change
@@ -1,14 +1,12 @@
apply plugin: 'android-library'

android {
compileSdkVersion androidCompileSdk
buildToolsVersion androidToolsVersion
compileSdkVersion 19
buildToolsVersion "19.0.3"

defaultConfig {
versionCode appMsgVersionCode
versionName appMsgVersionName
minSdkVersion 4
targetSdkVersion androidCompileSdk
targetSdkVersion 19
}
sourceSets {
main {
Expand Down
8 changes: 3 additions & 5 deletions sample/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,12 @@ dependencies {
}

android {
compileSdkVersion androidCompileSdk
buildToolsVersion androidToolsVersion
compileSdkVersion 19
buildToolsVersion "19.0.3"

defaultConfig {
versionCode appMsgVersionCode
versionName appMsgVersionName
minSdkVersion 7
targetSdkVersion androidCompileSdk
targetSdkVersion 19
}

sourceSets {
Expand Down

0 comments on commit ec8a927

Please sign in to comment.