Last active
May 25, 2020 19:20
-
-
Save lamvann/03e96b2dd79a25d772668b14db9cbadf to your computer and use it in GitHub Desktop.
Starting point of a top-level project gradle file in Kotlin DSL
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
plugins { | |
`kotlin-dsl` | |
} | |
buildscript { | |
repositories { | |
google() | |
jcenter() | |
} | |
dependencies { | |
classpath("com.android.tools.build:gradle:3.6.3") | |
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.72") | |
} | |
} | |
allprojects { | |
repositories { | |
google() | |
jcenter() | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment