Skip to content

Commit b6998e9

Browse files
committed
Support Library: Update to 26.0.0
Signed-off-by: Fung <fython@163.com>
1 parent d8c83f4 commit b6998e9

File tree

5 files changed

+11
-9
lines changed

5 files changed

+11
-9
lines changed

build.gradle

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
buildscript {
44
ext.kotlin_version = '1.1.2'
5+
ext.android_support_lib_version = '26.0.0'
56
repositories {
67
jcenter()
78
}
@@ -15,6 +16,7 @@ allprojects {
1516
repositories {
1617
jcenter()
1718
maven { url 'https://jitpack.io' }
19+
maven { url 'https://maven.google.com' }
1820
}
1921
}
2022

demo/build.gradle

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

2828
dependencies {
2929
compile fileTree(dir: 'libs', include: ['*.jar'])
30-
compile 'com.android.support:appcompat-v7:25.3.1'
31-
compile 'com.android.support:support-v13:25.3.1'
32-
compile 'com.android.support:design:25.3.1'
30+
compile "com.android.support:appcompat-v7:$android_support_lib_version"
31+
compile "com.android.support:support-v13:$android_support_lib_version"
32+
compile "com.android.support:design:$android_support_lib_version"
3333

3434
compile project(':kotlinyan-common')
3535
compile project(':kotlinyan-appcompat-support')

gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
BUILD_TOOLS_VERSION=25.0.3
1+
BUILD_TOOLS_VERSION=26.0.0
22
org.gradle.jvmargs=-Xmx1536m
3-
VERSION_NAME=0.1.5.2
4-
TARGET_SDK_VERSION=25
3+
VERSION_NAME=0.1.6
4+
TARGET_SDK_VERSION=26
55
VERSION_CODE=5
66
MIN_SDK_VERSION=19

kotlinyan-appcompat-support/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ android {
2727
dependencies {
2828
compile fileTree(dir: 'libs', include: ['*.jar'])
2929
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
30-
compile 'com.android.support:appcompat-v7:25.3.1'
31-
compile 'com.android.support:design:25.3.1'
30+
compile "com.android.support:appcompat-v7:$android_support_lib_version"
31+
compile "com.android.support:design:$android_support_lib_version"
3232
compile project(':kotlinyan-common')
3333
}
3434
repositories {

kotlinyan-recyclerview-support/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727
dependencies {
2828
compile fileTree(dir: 'libs', include: ['*.jar'])
2929
compile "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
30-
compile 'com.android.support:recyclerview-v7:25.3.1'
30+
compile "com.android.support:recyclerview-v7:$android_support_lib_version"
3131
}
3232
repositories {
3333
mavenCentral()

0 commit comments

Comments
 (0)