Skip to content

Commit

Permalink
Revert support libs to 27.0.x, Fixes ankidroid#4938
Browse files Browse the repository at this point in the history
  • Loading branch information
mikehardy committed Sep 10, 2018
1 parent a59f790 commit 09b9687
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions AnkiDroid/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -99,18 +99,24 @@ task jacocoTestReport(type: JacocoReport, dependsOn: ['testDebugUnitTest', 'crea

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.0.2'
// Note: the design support library can be quite buggy, so test everything thoroughly before updating it
implementation 'com.android.support:design:27.1.1'
implementation 'com.android.support:customtabs:27.1.1'
implementation 'com.android.support:recyclerview-v7:27.1.1'
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 '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'
implementation 'com.getbase:floatingactionbutton:1.10.1'
implementation 'ch.acra:acra-http:5.2.0'
implementation 'ch.acra:acra-dialog:5.2.0'
implementation 'ch.acra:acra-toast:5.2.0'
implementation('ch.acra:acra-http:5.2.0') {
exclude group: 'com.android.support'
}
implementation('ch.acra:acra-dialog:5.2.0') {
exclude group: 'com.android.support'
}
implementation('ch.acra:acra-toast:5.2.0') {
exclude group: 'com.android.support'
}
implementation 'com.jakewharton.timber:timber:4.7.1'
implementation 'com.google.code.gson:gson:2.8.5'
implementation 'org.jsoup:jsoup:1.11.3'
Expand Down

0 comments on commit 09b9687

Please # to comment.