Skip to content

Commit

Permalink
v4.13.0, change some gradle dependency declarations to use the + syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
Adamantcheese committed Jun 27, 2020
1 parent 4aac675 commit 78713b6
Showing 1 changed file with 12 additions and 13 deletions.
25 changes: 12 additions & 13 deletions Kuroba/app/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ android {
//or if there are big application level changes like tearing out/adding major features
//bump the PATCH (ZZ) version otherwise, for anything small
int major = 4
int minor = 12
int minor = 13
int patch = 0

/**
Expand Down Expand Up @@ -225,33 +225,32 @@ android {
}

dependencies {
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.browser:browser:1.2.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
implementation 'androidx.preference:preference:1.1.1'
implementation 'androidx.slidingpanelayout:slidingpanelayout:1.0.0'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.0.0'
implementation 'androidx.appcompat:appcompat:1.+'
implementation 'androidx.browser:browser:1.+'
implementation 'androidx.constraintlayout:constraintlayout:1.+'
implementation 'androidx.preference:preference:1.+'
implementation 'androidx.slidingpanelayout:slidingpanelayout:1.+'
implementation 'androidx.swiperefreshlayout:swiperefreshlayout:1.+'
implementation 'com.google.android.material:material:1.1.0'
implementation 'com.google.android.exoplayer:exoplayer:2.11.4'
implementation 'com.squareup.okhttp3:okhttp:4.7.2'
implementation 'com.google.android.exoplayer:exoplayer:2.11.+'
implementation 'com.squareup.okhttp3:okhttp:4.7.+'
implementation 'com.j256.ormlite:ormlite-core:5.1'
implementation 'com.j256.ormlite:ormlite-android:5.1'
implementation 'org.jsoup:jsoup:1.13.1'
implementation 'pl.droidsonroids.gif:android-gif-drawable:1.2.20'
implementation 'com.davemorrissey.labs:subsampling-scale-image-view:3.10.0'
implementation 'org.greenrobot:eventbus:3.2.0'
implementation 'org.nibor.autolink:autolink:0.10.0'
implementation 'com.google.code.gson:gson:2.8.6'
implementation 'com.google.code.gson:gson:2.8.+'
implementation 'me.xdrop:fuzzywuzzy:1.3.1'
implementation 'org.codejargon.feather:feather:1.0'
implementation 'com.vladsch.flexmark:flexmark:0.61.32'
implementation('com.vdurmont:emoji-java:5.1.1') {
implementation 'com.vladsch.flexmark:flexmark:0.+'
implementation('com.vdurmont:emoji-java:5.+') {
exclude group: 'org.json', module: 'json'
}
implementation 'io.reactivex.rxjava2:rxjava:2.2.19'
implementation 'io.reactivex.rxjava2:rxandroid:2.1.1'
implementation "org.jetbrains.kotlin:kotlin-stdlib-jdk7:$kotlin_version"
//noinspection GradleDependency wants to upgrade to older version
implementation 'com.github.K1rakishou:Fuck-Storage-Access-Framework:v1.0-alpha40'
implementation 'joda-time:joda-time:2.10.6'

Expand Down

0 comments on commit 78713b6

Please sign in to comment.