aboutsummaryrefslogtreecommitdiff
path: root/buildSrc/src/main/kotlin/Versions.kt
blob: a80695075cd5d96ecdcb0aeaa5d60c8445c35d33 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
object Versions {

    const val targetSdk = 31

    // https://developer.android.com/jetpack/androidx/releases/biometric
    const val andxBiometric = "1.1.0"

    // 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/jhy/jsoup/releases
    const val jsoup = "1.14.3"
    // https://square.github.io/okhttp/changelog/
    const val okhttp = "4.9.1"
    // https://developer.android.com/jetpack/androidx/releases/room
    const val room = "2.3.0"
    // http://robolectric.org/getting-started/
    const val roboelectric = "4.6"
    // https://github.com/Piasy/BigImageViewer#add-the-dependencies
    const val bigImageViewer = "1.8.1"
    // https://github.com/node-gradle/gradle-node-plugin/releases
    const val nodeGradle = "3.1.1"
}