Skip to content

Commit

Permalink
Upgrade to API 27 (#2755)
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
  • Loading branch information
SUPERCILEX authored and sjudd committed Dec 27, 2017
1 parent cc0288c commit 75c2a8b
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 11 deletions.
2 changes: 0 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,6 @@ subprojects { project ->
lintOptions {
warningsAsErrors true
quiet true
// TODO(#2730): Remove this after updating to the latest support library.
disable "GradleDependency"
}
}
}
Expand Down
6 changes: 3 additions & 3 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ POM_SCM_DEV_CONNECTION=scm:git@github.com:bumptech/glide.git
POM_DEVELOPER_ID=sjudd
POM_DEVELOPER_NAME=Sam Judd
POM_DEVELOPER_EMAIL=judds@google.com
ANDROID_SUPPORT_VERSION=26.1.0
ANDROID_SUPPORT_VERSION=27.0.2
VOLLEY_VERSION=1.0.0
OK_HTTP_VERSION=3.9.0
ANDROID_GRADLE_VERSION=3.0.1
Expand All @@ -36,8 +36,8 @@ PMD_VERSION=5.4.0
FINDBUGS_VERSION=3.0.0
ERROR_PRONE_VERSION=0.0.13

COMPILE_SDK_VERSION=26
TARGET_SDK_VERSION=26
COMPILE_SDK_VERSION=27
TARGET_SDK_VERSION=27
MIN_SDK_VERSION=14

org.gradle.jvmargs=-Xmx2048M
Expand Down
2 changes: 1 addition & 1 deletion integration/okhttp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ dependencies {
implementation project(':library')
annotationProcessor project(':annotation:compiler')

api "com.squareup.okhttp:okhttp:2.7.1"
api "com.squareup.okhttp:okhttp:2.7.2"
api "com.android.support:support-annotations:${ANDROID_SUPPORT_VERSION}"
}

Expand Down
10 changes: 5 additions & 5 deletions samples/imgur/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -38,20 +38,20 @@ dependencies {
annotationProcessor "com.google.dagger:dagger-android-processor:${DAGGER_VERSION}"

implementation "com.squareup.okhttp3:okhttp:${OK_HTTP_VERSION}"
implementation 'com.squareup.retrofit2:retrofit:2.2.0'
implementation 'com.squareup.retrofit2:converter-gson:2.2.0'
implementation 'com.squareup.retrofit2:adapter-rxjava:2.2.0'
implementation 'com.squareup.retrofit2:retrofit:2.3.0'
implementation 'com.squareup.retrofit2:converter-gson:2.3.0'
implementation 'com.squareup.retrofit2:adapter-rxjava:2.3.0'

implementation 'io.reactivex:rxandroid:1.2.1'
implementation 'io.reactivex:rxjava:1.2.9'
implementation 'io.reactivex:rxjava:1.3.4'

implementation "com.android.support:appcompat-v7:${ANDROID_SUPPORT_VERSION}"
implementation "com.android.support:cardview-v7:${ANDROID_SUPPORT_VERSION}"
implementation "com.android.support:recyclerview-v7:${ANDROID_SUPPORT_VERSION}"

// Fixes a compilation warning related to dagger, see
// https://github.com/google/guava/issues/2721.
compileOnly "com.google.errorprone:error_prone_annotations:2.0.19"
compileOnly "com.google.errorprone:error_prone_annotations:2.1.3"
}

task run(type: Exec, dependsOn: 'installDebug') {
Expand Down

0 comments on commit 75c2a8b

Please sign in to comment.