Skip to content

Commit

Permalink
Use new 27.1.1 support libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy authored and timrae committed Sep 17, 2018
1 parent 37bbdd9 commit db681c3
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions AnkiDroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -108,11 +108,12 @@ task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'crea

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.0.2'
def support_lib_version = '27.1.1'
implementation "com.android.support:appcompat-v7:$support_lib_version"
// Note: the design support library can be quite buggy, so test everything thoroughly before updating it
implementation 'com.android.support:design:27.0.2'
implementation 'com.android.support:customtabs:27.0.2'
implementation 'com.android.support:recyclerview-v7:27.0.2'
implementation "com.android.support:design:$support_lib_version"
implementation "com.android.support:customtabs:$support_lib_version"
implementation "com.android.support:recyclerview-v7:$support_lib_version"
implementation 'io.requery:sqlite-android:3.24.0'
implementation 'android.arch.persistence:db:1.1.1'
implementation 'com.afollestad.material-dialogs:core:0.9.6.0'
Expand Down

0 comments on commit db681c3

Please # to comment.