Skip to content

Commit 0711eba

Browse files
committed
update deps
1 parent 9e68bde commit 0711eba

File tree

6 files changed

+14
-11
lines changed

6 files changed

+14
-11
lines changed

build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,11 @@
11
// Top-level build file where you can add configuration options common to all sub-projects/modules.
22
buildscript {
3+
ext.support_version = '27.1.0'
4+
35
repositories {
46
jcenter()
57
mavenCentral()
8+
maven { url 'https://maven.google.com'}
69
}
710

811
dependencies {
@@ -19,6 +22,7 @@ allprojects {
1922
repositories {
2023
mavenLocal()
2124
jcenter()
25+
maven { url 'https://maven.google.com'}
2226
}
2327

2428
tasks.withType(JavaCompile) {

gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
VERSION_NAME=1.5.0
1+
VERSION_NAME=1.5.1-SNAPSHOT
22
VERSION_CODE=1500
33
GROUP=com.mcxiaoke.next
44

@@ -14,8 +14,8 @@ POM_DEVELOPER_ID=mcxiaoke
1414
POM_DEVELOPER_NAME=Xiaoke Zhang
1515
POM_DEVELOPER_EMAIL=mail@mcxiaoke.com
1616

17-
ANDROID_BUILD_TARGET_SDK_VERSION=25
18-
ANDROID_BUILD_TOOLS_VERSION=25.0.3
19-
ANDROID_BUILD_SDK_VERSION=25
17+
ANDROID_BUILD_TARGET_SDK_VERSION=27
18+
ANDROID_BUILD_TOOLS_VERSION=27.0.3
19+
ANDROID_BUILD_SDK_VERSION=27
2020

2121
ANDROID_BUILD_MIN_SDK_VERSION=10

http/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ apply plugin: 'com.android.library'
33
dependencies {
44
compile project(":core")
55
compile project(":task")
6-
compile 'com.squareup.okhttp3:okhttp:3.6.0'
7-
compile 'com.google.code.gson:gson:2.8.0'
6+
compile 'com.squareup.okhttp3:okhttp:3.10.0'
7+
compile 'com.google.code.gson:gson:2.8.2'
88

9-
testCompile 'com.google.code.gson:gson:2.7'
9+
testCompile 'com.google.code.gson:gson:2.8.2'
1010
testCompile 'junit:junit:4.12'
1111
testCompile 'org.mockito:mockito-core:1.10.19'
1212
androidTestCompile 'com.android.support.test:runner:0.5'

recycler/build.gradle

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

33
dependencies {
4-
compile "com.android.support:support-v4:22.2.1"
5-
compile 'com.android.support:recyclerview-v7:22.1.1'
4+
compile "com.android.support:support-v4:$support_version"
5+
compile "com.android.support:recyclerview-v7:$support_version"
66

77
compile project(":core")
88
compile project(":ui")

settings.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,4 @@ include ':func'
44
include ':http'
55
include ':ui'
66
include ':recycler'
7-
include ':extras-abc'
87
include ':samples'

ui/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.library'
22

33
dependencies {
4-
compile "com.android.support:support-v4:22.1.1"
4+
compile "com.android.support:support-v4:$support_version"
55
}
66

77
apply from: '../base.gradle'

0 commit comments

Comments
 (0)