Skip to content

Instantly share code, notes, and snippets.

@LizzieStudeneer
Created September 9, 2019 08:38
Show Gist options
  • Save LizzieStudeneer/860802697deb7e940540623749d2f8f1 to your computer and use it in GitHub Desktop.
Save LizzieStudeneer/860802697deb7e940540623749d2f8f1 to your computer and use it in GitHub Desktop.
// BluesquarePlugin.kt
open class BluesquarePlugin : Plugin<Project> {
override fun apply(project: Project) {
val bluesquareExtension: BluesquareExtension = project.extensions.create(
"bluesquare", BluesquareExtension::class.java
)
project.configurePlugins()
project.configureAndroid()
project.configureDependencies()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment