Skip to content

Commit 31e3b35

Browse files
committed
[Feature] Update dependencies.
1 parent 3f6d17b commit 31e3b35

File tree

5 files changed

+15
-11
lines changed

5 files changed

+15
-11
lines changed

build.gradle

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ buildscript {
55
jcenter()
66
}
77
dependencies {
8-
classpath 'com.android.tools.build:gradle:2.2.2'
8+
classpath 'com.android.tools.build:gradle:2.3.3'
99

1010
// NOTE: Do not place your application dependencies here; they belong
1111
// in the individual module build.gradle files
@@ -17,6 +17,10 @@ allprojects {
1717
group = GROUP
1818
repositories {
1919
jcenter()
20+
// Replace this with `google()` when upgraded to Android Gradle Plugin 3.0+ and Gradle 4.0+.
21+
maven {
22+
url "https://maven.google.com"
23+
}
2024
}
2125
}
2226

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,6 +33,6 @@ POM_DEVELOPER_ID=zhanghai
3333
POM_DEVELOPER_NAME=Zhang Hai
3434

3535
ANDROID_MIN_SDK_VERSION=15
36-
ANDROID_COMPILE_SDK_VERSION=25
37-
ANDROID_BUILD_TOOLS_VERSION=25
38-
ANDROID_TARGET_SDK_VERSION=25
36+
ANDROID_COMPILE_SDK_VERSION=26
37+
ANDROID_BUILD_TOOLS_VERSION=26.0.0
38+
ANDROID_TARGET_SDK_VERSION=26
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
#Tue Oct 25 00:17:10 CST 2016
1+
#Sun Aug 20 01:02:01 PDT 2017
22
distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-2.14.1-all.zip
6+
distributionUrl=https\://services.gradle.org/distributions/gradle-3.3-all.zip

library/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ android {
2727

2828
dependencies {
2929
compile fileTree(dir: 'libs', include: ['*.jar'])
30-
compile 'com.android.support:customtabs:25.0.0'
31-
compile 'com.android.support:support-v4:25.0.0'
30+
compile 'com.android.support:customtabs:26.0.1'
31+
compile 'com.android.support:support-v4:26.0.1'
3232
}
3333

3434
apply from: '../gradle-mvn-push.gradle'

sample/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ apply plugin: 'android-apt'
4949

5050
dependencies {
5151
compile fileTree(dir: 'libs', include: ['*.jar'])
52-
compile 'com.android.support:appcompat-v7:25.0.0'
53-
compile 'com.jakewharton:butterknife:8.4.0'
54-
apt 'com.jakewharton:butterknife-compiler:8.4.0'
52+
compile 'com.android.support:appcompat-v7:26.0.1'
53+
compile 'com.jakewharton:butterknife:8.8.0'
54+
apt 'com.jakewharton:butterknife-compiler:8.8.0'
5555
compile project(':library')
5656
}

0 commit comments

Comments
 (0)