Skip to content

Instantly share code, notes, and snippets.

@albka1986
Created June 24, 2019 16:39
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 albka1986/869518578654f096468475054db03cae to your computer and use it in GitHub Desktop.
Save albka1986/869518578654f096468475054db03cae to your computer and use it in GitHub Desktop.
// Top-level build file where you can add configuration options common to all sub-projects/modules.
buildscript {
ext.kotlin_version = '1.3.40'
ext.navigation_version = '2.1.0-alpha05'
ext.room_version = "2.1.0"
ext.kodein_version = '5.2.0'
ext.retrofit_version = '2.5.0'
ext.lifecycle_version = '2.2.0-alpha01'
ext.glide_version = '4.9.0'
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.5.0-beta04'
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
classpath 'android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0'
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}
allprojects {
repositories {
google()
jcenter()
}
}
task clean(type: Delete) {
delete rootProject.buildDir
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment