blob: fb7d764eeaeb0e059bcdd9dc1426ee0d4c35b120 (
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
27
28
29
30
31
32
|
object Versions {
const val targetSdk = 29
// https://developer.android.com/jetpack/androidx/releases/biometric
const val andxBiometric = "1.0.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/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://developer.android.com/jetpack/androidx/releases/room
const val room = "2.2.2"
// http://robolectric.org/getting-started/
const val roboelectric = "4.3"
// https://github.com/davemorrissey/subsampling-scale-image-view#quick-start
const val scaleImageView = "3.10.0"
// https://github.com/srs/gradle-node-plugin/releases
const val nodeGradle = "1.3.1"
}
|