Skip to content

Commit ec8a927

Browse files
committed
Update gradle (close #24)
1 parent a701a05 commit ec8a927

File tree

4 files changed

+9
-19
lines changed

4 files changed

+9
-19
lines changed

build.gradle

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ buildscript {
44
}
55

66
dependencies {
7-
classpath 'com.android.tools.build:gradle:0.8.+'
7+
classpath 'com.android.tools.build:gradle:0.10.+'
88
}
99
}
1010

@@ -16,13 +16,7 @@ allprojects {
1616
version = VERSION_NAME
1717
group = GROUP
1818

19-
androidCompileSdk = 19
20-
androidToolsVersion = '19'
21-
appMsgVersionCode = 4
22-
appMsgVersionName = VERSION_NAME
23-
2419
repositories {
25-
mavenLocal()
2620
mavenCentral()
2721
}
2822
}
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Sat Feb 08 21:39:23 PST 2014
1+
#Wed May 07 11:40:46 MSK 2014
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.10-all.zip
6+
distributionUrl=http\://services.gradle.org/distributions/gradle-1.11-all.zip

library/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,12 @@
11
apply plugin: 'android-library'
22

33
android {
4-
compileSdkVersion androidCompileSdk
5-
buildToolsVersion androidToolsVersion
4+
compileSdkVersion 19
5+
buildToolsVersion "19.0.3"
66

77
defaultConfig {
8-
versionCode appMsgVersionCode
9-
versionName appMsgVersionName
108
minSdkVersion 4
11-
targetSdkVersion androidCompileSdk
9+
targetSdkVersion 19
1210
}
1311
sourceSets {
1412
main {

sample/build.gradle

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ dependencies {
66
}
77

88
android {
9-
compileSdkVersion androidCompileSdk
10-
buildToolsVersion androidToolsVersion
9+
compileSdkVersion 19
10+
buildToolsVersion "19.0.3"
1111

1212
defaultConfig {
13-
versionCode appMsgVersionCode
14-
versionName appMsgVersionName
1513
minSdkVersion 7
16-
targetSdkVersion androidCompileSdk
14+
targetSdkVersion 19
1715
}
1816

1917
sourceSets {

0 commit comments

Comments
 (0)