diff options
author | Allan Wang <me@allanwang.ca> | 2020-02-18 00:59:18 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-18 00:59:18 -0800 |
commit | 4d5aaf541dbfa7d521ebbc5f011a642c83c4b9c5 (patch) | |
tree | 76b340fe12c674191be56f951bd8847a066503bb /buildSrc/src/main/kotlin/Versions.kt | |
parent | bed9c89993d7a0a8cd37b24c3afb492c1c1ea992 (diff) | |
parent | 0fb77fc887c1754573e7b34ea1c01b4b3556f62f (diff) | |
download | frost-4d5aaf541dbfa7d521ebbc5f011a642c83c4b9c5.tar.gz frost-4d5aaf541dbfa7d521ebbc5f011a642c83c4b9c5.tar.bz2 frost-4d5aaf541dbfa7d521ebbc5f011a642c83c4b9c5.zip |
Merge pull request #1644 from AllanWang/versions
Versions
Diffstat (limited to 'buildSrc/src/main/kotlin/Versions.kt')
-rw-r--r-- | buildSrc/src/main/kotlin/Versions.kt | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/buildSrc/src/main/kotlin/Versions.kt b/buildSrc/src/main/kotlin/Versions.kt index fb7d764e..75544cfb 100644 --- a/buildSrc/src/main/kotlin/Versions.kt +++ b/buildSrc/src/main/kotlin/Versions.kt @@ -3,26 +3,24 @@ object Versions { const val targetSdk = 29 // https://developer.android.com/jetpack/androidx/releases/biometric - const val andxBiometric = "1.0.0" + const val andxBiometric = "1.0.1" // https://mvnrepository.com/artifact/org.apache.commons/commons-text // Updates blocked due to javax.script dependency const val apacheCommonsText = "1.4" // https://github.com/brianwernick/ExoMedia/releases const val exoMedia = "4.3.0" - // https://github.com/InsertKoinIO/koin/blob/master/CHANGELOG.md - const val koin = "2.0.1" // https://github.com/mockk/mockk/releases const val mockk = "1.9.3" // https://github.com/jhy/jsoup/releases const val jsoup = "1.12.1" - // https://github.com/square/leakcanary/releases - const val leakCanary = "1.6.2" - // https://github.com/square/okhttp/releases - const val okhttp = "4.2.2" + // https://square.github.io/leakcanary/changelog/ + const val leakCanary = "2.2" + // https://square.github.io/okhttp/changelog/ + const val okhttp = "4.3.1" // https://developer.android.com/jetpack/androidx/releases/room - const val room = "2.2.2" + const val room = "2.2.3" // http://robolectric.org/getting-started/ const val roboelectric = "4.3" // https://github.com/davemorrissey/subsampling-scale-image-view#quick-start |