Created
November 15, 2022 12:17
-
-
Save landarskiy/9dbe5b59dea94f9f4d981cca7f98de65 to your computer and use it in GitHub Desktop.
This file contains 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 AndroidLibraryConventionPlugin : Plugin<Project> { | |
override fun apply(target: Project) { | |
with(target) { | |
with(pluginManager) { | |
apply("com.android.library") | |
} | |
extensions.configure<LibraryExtension> { | |
configureAndroidCommon(this) | |
configureAndroidLibrary(this) | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment