Skip to content

Instantly share code, notes, and snippets.

@quickbirdstudios-eng
Created September 6, 2019 07:20
Show Gist options
  • Save quickbirdstudios-eng/fc32284e0d8411ee481cb9c601a78ed2 to your computer and use it in GitHub Desktop.
Save quickbirdstudios-eng/fc32284e0d8411ee481cb9c601a78ed2 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