Skip to content

Commit e5b5b8e

Browse files
author
Daniel
committed
Update dependencies
1 parent abe1894 commit e5b5b8e

File tree

3 files changed

+14
-9
lines changed

3 files changed

+14
-9
lines changed

build.gradle

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,16 @@ buildscript {
33
jcenter()
44
}
55
dependencies {
6-
classpath 'com.android.tools.build:gradle:2.3.1'
6+
classpath 'com.android.tools.build:gradle:2.3.3'
77
}
88
}
99

1010
allprojects {
1111
repositories {
1212
jcenter()
13+
maven {
14+
url "https://maven.google.com"
15+
}
1316
}
1417

1518
group = 'eu.inloop'

library/build.gradle

Lines changed: 5 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 25
6-
buildToolsVersion '25.0.2'
5+
compileSdkVersion 26
6+
buildToolsVersion '25.0.3'
77

88
defaultConfig {
99
minSdkVersion 15
10-
targetSdkVersion 25
10+
targetSdkVersion 26
1111
versionCode 1
1212
versionName VERSION_NAME
1313
consumerProguardFiles 'proguard-rules.pro'
@@ -25,7 +25,8 @@ android {
2525
}
2626

2727
dependencies {
28-
compile 'com.android.support:appcompat-v7:25.3.1'
28+
compile 'com.android.support:support-fragment:26.0.1'
29+
compile 'com.android.support:appcompat-v7:26.0.1'
2930
}
3031

3132
task androidJavadocs(type: Javadoc) {

sample/build.gradle

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

33
android {
4-
compileSdkVersion 25
5-
buildToolsVersion '25.0.2'
4+
compileSdkVersion 26
5+
buildToolsVersion '25.0.3'
66

77
defaultConfig {
88
applicationId 'eu.inloop.viewmodel.sample'
99
minSdkVersion 15
10-
targetSdkVersion 25
10+
targetSdkVersion 26
1111
versionCode 1
1212
versionName '1.0'
1313
}
@@ -30,7 +30,8 @@ android {
3030
}
3131

3232
dependencies {
33-
compile 'com.android.support:appcompat-v7:25.3.1'
33+
compile 'com.android.support:support-fragment:26.0.1'
34+
compile 'com.android.support:appcompat-v7:26.0.1'
3435
debugCompile 'com.squareup.leakcanary:leakcanary-android:1.4'
3536
releaseCompile 'com.squareup.leakcanary:leakcanary-android-no-op:1.4'
3637
compile 'com.jakewharton:butterknife:5.1.2'

0 commit comments

Comments
 (0)