Created
September 6, 2019 07:14
-
-
Save quickbirdstudios-eng/3653a230eba4e1d9ecfd6745ffcd0622 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
plugins { | |
`kotlin-dsl` | |
} | |
repositories { | |
mavenCentral() | |
google() | |
jcenter() | |
} | |
dependencies { | |
/* Example Dependency */ | |
/* Depend on the android gradle plugin, since we want to access it in our plugin */ | |
implementation("com.android.tools.build:gradle:3.5.0") | |
/* Example Dependency */ | |
/* Depend on the kotlin plugin, since we want to access it in our plugin */ | |
implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.3.50") | |
/* Depend on the default Gradle API's since we want to build a custom plugin */ | |
implementation(gradleApi()) | |
implementation(localGroovy()) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment