This file contains 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
/** | |
* To define plugins | |
*/ | |
object BuildPlugins { | |
val android by lazy { "com.android.tools.build:gradle:${Versions.gradlePlugin}" } | |
val kotlin by lazy { "org.jetbrains.kotlin:kotlin-gradle-plugin:${Versions.kotlin}" } | |
} | |
/** | |
* To define dependencies | |
*/ | |
object Deps { | |
val appCompat by lazy { "androidx.appcompat:appcompat:${Versions.appCompat}" } | |
val timber by lazy { "com.jakewharton.timber:timber:${Versions.timber}" } | |
val kotlin by lazy { "org.jetbrains.kotlin:kotlin-stdlib-jdk7:${Versions.kotlin}" } | |
val materialDesign by lazy { "com.google.android.material:material:${Versions.material}" } | |
val constraintLayout by lazy { "androidx.constraintlayout:constraintlayout:${Versions.constraintLayout}" } | |
val junit by lazy { "junit:junit:${Versions.jUnit}" } | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment