Skip to content

Commit 7c95a1b

Browse files
author
Daniel Novak
committed
Update dependencies
1 parent 2167582 commit 7c95a1b

File tree

4 files changed

+13
-12
lines changed

4 files changed

+13
-12
lines changed

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ buildscript {
33
jcenter()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:1.2.3'
6+
classpath 'com.android.tools.build:gradle:2.1.3'
77
}
88
}
99

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
1+
#Wed Sep 14 09:54:42 CEST 2016
12
distributionBase=GRADLE_USER_HOME
23
distributionPath=wrapper/dists
34
zipStoreBase=GRADLE_USER_HOME
45
zipStorePath=wrapper/dists
5-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.2.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip

library/build.gradle

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@ apply plugin: 'com.android.library'
22
apply plugin: 'maven'
33

44
android {
5-
compileSdkVersion 23
6-
buildToolsVersion '23.0.2'
5+
compileSdkVersion 24
6+
buildToolsVersion '24.0.2'
77

88
defaultConfig {
99
minSdkVersion 15
10-
targetSdkVersion 23
10+
targetSdkVersion 24
1111
versionCode 1
1212
versionName VERSION_NAME
1313
}
@@ -24,7 +24,7 @@ android {
2424
}
2525

2626
dependencies {
27-
compile 'com.android.support:appcompat-v7:23.1.1'
27+
compile 'com.android.support:appcompat-v7:24.2.0'
2828
}
2929

3030
task androidJavadocs(type: Javadoc) {

sample/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 23
5-
buildToolsVersion '23.0.2'
4+
compileSdkVersion 24
5+
buildToolsVersion '24.0.2'
66

77
defaultConfig {
88
applicationId 'eu.inloop.viewmodel.sample'
99
minSdkVersion 15
10-
targetSdkVersion 23
10+
targetSdkVersion 24
1111
versionCode 1
1212
versionName '1.0'
1313
}
@@ -26,9 +26,9 @@ android {
2626
}
2727

2828
dependencies {
29-
compile 'com.android.support:appcompat-v7:23.1.1'
30-
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.3'
31-
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.3'
29+
compile 'com.android.support:appcompat-v7:24.2.0'
30+
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4'
31+
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4'
3232
compile 'com.jakewharton:butterknife:5.1.2'
3333
compile project(':library')
3434
}

0 commit comments

Comments
 (0)