Skip to content

Instantly share code, notes, and snippets.

@vladimirpetrovski
Last active June 11, 2020 19:14
Show Gist options
  • Select an option

  • Save vladimirpetrovski/27cdbddd918541b2c1b7f9f48cf60515 to your computer and use it in GitHub Desktop.

Select an option

Save vladimirpetrovski/27cdbddd918541b2c1b7f9f48cf60515 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 {
repositories {
google()
jcenter()
}
dependencies {
classpath("com.android.tools.build:gradle:3.6.3")
classpath(kotlin("gradle-plugin", "1.3.71"))
classpath("com.google.gms:google-services:4.3.3")
classpath("androidx.navigation:navigation-safe-args-gradle-plugin:2.3.0-alpha06")
// NOTE: Do not place your application dependencies here; they belong
// in the individual module build gradle files
}
}
allprojects {
repositories {
google()
jcenter()
maven("https://dl.bintray.com/ekito/koin")
maven("https://dl.bintray.com/lamba92/com.github.lamba92")
}
}
tasks.register("clean", Delete::class) {
delete(rootProject.buildDir)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment