Skip to content

Instantly share code, notes, and snippets.

@cortinico
Created June 16, 2020 13:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cortinico/742b8b2b26406ac874fa0b3dd00cd202 to your computer and use it in GitHub Desktop.
Save cortinico/742b8b2b26406ac874fa0b3dd00cd202 to your computer and use it in GitHub Desktop.
Dependencies.kt
object Versions {
const val APPCOMPAT = "1.1.0"
const val CORE_KTX = "1.2.0"
const val JUNIT = "4.13"
}
object SupportLibs {
const val ANDROIDX_APPCOMPAT = "androidx.appcompat:appcompat:${Versions.APPCOMPAT}"
const val ANDROIDX_CORE_KTX = "androidx.core:core-ktx:${Versions.CORE_KTX}"
}
object TestingLib {
const val JUNIT = "junit:junit:${Versions.JUNIT}"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment