Skip to content

Commit bd97e3d

Browse files
author
Daniel Novak
committed
Update build tools and gradle
1 parent 02b756b commit bd97e3d

File tree

4 files changed

+6
-11
lines changed

4 files changed

+6
-11
lines changed

build.gradle

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:0.12.2'
9-
10-
// NOTE: Do not place your application dependencies here; they belong
11-
// in the individual module build.gradle files
8+
classpath 'com.android.tools.build:gradle:1.0.0'
129
}
1310
}
1411

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
1-
#Wed Apr 10 15:27:10 PDT 2013
21
distributionBase=GRADLE_USER_HOME
32
distributionPath=wrapper/dists
43
zipStoreBase=GRADLE_USER_HOME
54
zipStorePath=wrapper/dists
6-
distributionUrl=http\://services.gradle.org/distributions/gradle-1.12-all.zip
5+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip

library/build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,4 @@ dependencies {
2626
compile fileTree(dir: 'libs', include: ['*.jar'])
2727
compile 'com.android.support:support-v4:20.0.0'
2828
compile 'com.android.support:support-annotations:20.0.0'
29-
compile 'com.jakewharton:butterknife:5.1.2'
3029
}

sample/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,11 +5,11 @@ android {
55
buildToolsVersion "20.0.0"
66

77
defaultConfig {
8-
applicationId "eu.inloop.viewmodel.sample"
8+
applicationId 'eu.inloop.viewmodel.sample'
99
minSdkVersion 15
1010
targetSdkVersion 20
1111
versionCode 1
12-
versionName "1.0"
12+
versionName '1.0'
1313
}
1414

1515
compileOptions {
@@ -18,15 +18,15 @@ android {
1818
}
1919
buildTypes {
2020
release {
21-
runProguard false
21+
minifyEnabled false
2222
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
2323
}
2424
}
2525
}
2626

2727
dependencies {
2828
compile fileTree(dir: 'libs', include: ['*.jar'])
29-
compile 'com.android.support:support-v4:20.0.0'
29+
compile 'com.android.support:support-v4:21.0.3'
3030
compile 'com.android.support:support-annotations:20.0.0'
3131
compile 'com.jakewharton:butterknife:5.1.2'
3232
compile project(':library')

0 commit comments

Comments
 (0)