Created
June 16, 2020 13:15
-
-
Save cortinico/742b8b2b26406ac874fa0b3dd00cd202 to your computer and use it in GitHub Desktop.
Dependencies.kt
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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