Last active
May 19, 2019 01:04
-
-
Save cdsap/e28db395b39800ed151cfcfb47121f9d to your computer and use it in GitHub Desktop.
commonplugin
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
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