Skip to content
Snippets Groups Projects
Commit 8fdd9819 authored by Kamal Bramwell's avatar Kamal Bramwell
Browse files

Imported timber, coroutines and truth dependencies

parent ea0bcee6
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,12 @@ dependencies {
androidTestApi(platform(project(":depconstraints")))
implementation(Libs.CORE_KTX)
implementation(Libs.COROUTINES)
implementation(Libs.TIMBER)
testImplementation(Libs.JUNIT)
testImplementation(Libs.TRUTH)
androidTestImplementation(Libs.ESPRESSO_CORE)
androidTestImplementation(Libs.EXT_JUNIT)
}
\ No newline at end of file
object Config {
const val ANDROID_GRADLE_PLUGIN = "7.2.1"
const val KOTLIN = "1.6.10"
const val COMPILE_SDK = 32
const val MIN_SDK = 26
const val TARGET_SDK = 32
......@@ -9,7 +8,10 @@ object Config {
object Libs {
const val CORE_KTX = "androidx.core:core-ktx"
const val JUNIT = "junit:junit"
const val EXT_JUNIT = "androidx.test.ext:junit"
const val COROUTINES = "org.jetbrains.kotlinx:kotlinx-coroutines-android"
const val ESPRESSO_CORE = "androidx.test.espresso:espresso-core"
const val EXT_JUNIT = "androidx.test.ext:junit"
const val JUNIT = "junit:junit"
const val TIMBER = "com.jakewharton.timber:timber"
const val TRUTH = "com.google.truth:truth"
}
\ No newline at end of file
......@@ -4,16 +4,22 @@ plugins {
}
val core = "1.7.0"
val coroutines = "1.3.9"
val espresso = "3.4.0"
val extJunit = "1.1.3"
val junit = "4.13.2"
val timber = "5.0.1"
val truth = "1.1.3"
dependencies {
constraints {
api("${Libs.CORE_KTX}:$core")
api("${Libs.JUNIT}:$junit")
api("${Libs.EXT_JUNIT}:$extJunit")
api("${Libs.COROUTINES}:$coroutines")
api("${Libs.ESPRESSO_CORE}:$espresso")
api("${Libs.EXT_JUNIT}:$extJunit")
api("${Libs.JUNIT}:$junit")
api("${Libs.TIMBER}:$timber")
api("${Libs.TRUTH}:$truth")
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment