Skip to content

Commit 9244ff2

Browse files
committed
Upgrade AndroidSdk, Okhttp, Glide
1 parent e22127c commit 9244ff2

File tree

4 files changed

+12
-11
lines changed

4 files changed

+12
-11
lines changed

.travis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ jdk: oraclejdk8
33

44
env:
55
global:
6-
- ANDROID_API_LEVEL=25
7-
- ANDROID_BUILD_TOOLS_VERSION=25.0.3
6+
- ANDROID_API_LEVEL=26
7+
- ANDROID_BUILD_TOOLS_VERSION=26.0.2
88
- TRAVIS_SECURE_ENV_VARS=true
99

1010
android:

app/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ android {
2626
dependencies {
2727
compile fileTree(dir: 'libs', include: ['*.jar'])
2828
testCompile 'junit:junit:4.12'
29-
compile 'com.android.support:appcompat-v7:25.3.1'
30-
compile 'com.squareup.okhttp3:okhttp:3.8.1'
31-
compile 'com.github.bumptech.glide:glide:4.0.0'
32-
annotationProcessor 'com.github.bumptech.glide:compiler:4.0.0'
33-
compile 'com.github.bumptech.glide:okhttp3-integration:4.0.0'
29+
compile 'com.android.support:appcompat-v7:26.1.0'
30+
compile 'com.squareup.okhttp3:okhttp:3.9.0'
31+
compile 'com.github.bumptech.glide:glide:4.1.1'
32+
annotationProcessor 'com.github.bumptech.glide:compiler:4.1.1'
33+
compile 'com.github.bumptech.glide:okhttp3-integration:4.1.1'
3434
compile project(':progress')
3535
// compile 'me.jessyan:progressmanager:1.3.3'
3636
}

build.gradle

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ buildscript {
1313
allprojects {
1414
repositories {
1515
jcenter()
16+
maven { url "https://maven.google.com" }
1617
}
1718
}
1819

@@ -22,9 +23,9 @@ task clean(type: Delete) {
2223

2324
ext {
2425
minSdkVersion = 14
25-
targetSdkVersion = 25
26-
compileSdkVersion = 25
27-
buildToolsVersion = "25.0.3"
26+
targetSdkVersion = 26
27+
compileSdkVersion = 26
28+
buildToolsVersion = "26.0.2"
2829
versionCode = 16
2930
versionName = "1.3.3"
3031
}

progress/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ android {
2727

2828
dependencies {
2929
compile fileTree(dir: 'libs', include: ['*.jar'])
30-
provided 'com.squareup.okhttp3:okhttp:3.8.1'
30+
provided 'com.squareup.okhttp3:okhttp:3.9.0'
3131
}
3232

3333
apply from: 'bintray.gradle'

0 commit comments

Comments
 (0)