Skip to content

Instantly share code, notes, and snippets.

@cdsap
Last active May 19, 2019 01:04
Show Gist options
  • Save cdsap/e28db395b39800ed151cfcfb47121f9d to your computer and use it in GitHub Desktop.
Save cdsap/e28db395b39800ed151cfcfb47121f9d to your computer and use it in GitHub Desktop.
commonplugin
class LibraryCommonPlugin : Plugin<Project> {
override fun apply(target: Project) {
target.plugins.apply("com.android.library")
val extension = target.extensions.getByType<LibraryExtension>()
extension.configure()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment