Created
April 22, 2019 14:34
-
-
Save passiondroid/3ca281a8ea699816c707558bfaad2128 to your computer and use it in GitHub Desktop.
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
// Top-level build file where you can add configuration options common to all sub-projects/modules. | |
buildscript { | |
repositories { | |
google() | |
jcenter() | |
} | |
dependencies { | |
classpath (BuildPlugins.androidGradlePlugin) | |
classpath (BuildPlugins.kotlinGradlePlugin) | |
// NOTE: Do not place your application dependencies here; they belong | |
// in the individual module build.gradle files | |
} | |
} | |
allprojects { | |
repositories { | |
google() | |
jcenter() | |
} | |
} | |
tasks.register("clean").configure { | |
delete("build") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment