Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to compileSdkVersion 24 (Fix #7257) #7287

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
9 changes: 5 additions & 4 deletions main/build.gradle
Expand Up @@ -18,7 +18,7 @@ if (isContinuousIntegrationServer()) {
}

android {
compileSdkVersion "Google Inc.:Google APIs:23"
compileSdkVersion "Google Inc.:Google APIs:24"

buildToolsVersion "28.0.3"

Expand Down Expand Up @@ -336,10 +336,11 @@ dependencies {
implementation "io.reactivex.rxjava2:rxandroid:2.0.2"

// Support Library. Appcompat
implementation 'com.android.support:appcompat-v7:23.4.0'
def appcompatVersion = '24.2.1'
implementation "com.android.support:appcompat-v7:$appcompatVersion"

// Support Library RecyclerView
implementation 'com.android.support:recyclerview-v7:23.4.0'
implementation "com.android.support:recyclerview-v7:$appcompatVersion"
// we don't want to implement decorators on our own
implementation 'com.yqritc:recyclerview-flexibledivider:1.4.0'

Expand All @@ -363,7 +364,7 @@ dependencies {
implementation 'com.google.zxing:android-integration:3.3.0'

// GridLayout used by the coordinate calculator
implementation 'com.android.support:gridlayout-v7:23.0.1'
implementation "com.android.support:gridlayout-v7:$appcompatVersion"

// Espresso TODO: disabled because of causing proguard errors en masse (due to including hamcrest and what else as own dependencies)
// androidTestCompile 'com.jakewharton.espresso:espresso:1.1-r3'
Expand Down