k_mars/build.gradle
2021-12-14 10:11:04 +01:00

42 lines
1.2 KiB
Groovy

// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext {
// Versions for all the dependencies we plan to use. It's particularly useful for kotlin and
// navigation where the versions of the plugin needs to be the same as the version of the
// library defined in the app Gradle file
version_android_gradle_plugin = '4.0.1'
version_core = "1.3.1"
version_constraint_layout = "1.1.3"
version_glide = "4.8.0"
version_kotlin = "1.3.72"
version_lifecycle = "2.2.0"
version_moshi = "1.8.0"
version_navigation = "1.0.0"
version_retrofit = "2.9.0"
version_recyclerview = "1.0.0"
}
repositories {
google()
jcenter()
}
dependencies {
classpath "com.android.tools.build:gradle:$version_android_gradle_plugin"
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$version_kotlin"
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:$version_navigation"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}