Use Kotlin for Gradle DSL

This commit is contained in:
darken
2022-09-14 18:00:18 +02:00
committed by Matthias Urhahn
parent 61463bc05f
commit e0d44f2f1c
20 changed files with 792 additions and 784 deletions
+52
View File
@@ -0,0 +1,52 @@
object Versions {
object Gradle {
const val buildTools = "7.1.2"
}
object Kotlin {
const val core = "1.7.0"
const val coroutines = "1.6.2"
}
object Dokka {
const val core = "1.6.21"
}
object Dagger {
const val core = "2.42"
}
object Moshi {
const val core = "1.13.0"
}
object AndroidX {
const val core = ""
object Navigation {
const val core = "2.5.0"
}
object Testing {
const val coreKtx = "1.4.0"
}
object WorkManager {
const val core = "2.7.1"
}
}
object Junit {
const val legacy = "4.13.2"
const val jupiter = "5.7.1"
}
object Mockk {
const val core = "1.12.4"
const val android = "1.12.4"
}
object Kotest {
const val core = "4.6.4"
}
}