Skip to content

Instantly share code, notes, and snippets.

@landarskiy
Created November 15, 2022 12:23
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save landarskiy/6a2a87c12f9ba0e38f2b1a5a5d2c6e7c to your computer and use it in GitHub Desktop.
Save landarskiy/6a2a87c12f9ba0e38f2b1a5a5d2c6e7c to your computer and use it in GitHub Desktop.
gradlePlugin {
plugins {
register("androidApplication") {
id = "compositebuild.android.application"
implementationClass = "AndroidApplicationConventionPlugin"
}
register("androidKotlin") {
id = "compositebuild.jetbrains.kotlin.android"
implementationClass = "AndroidKotlinConventionPlugin"
}
register("androidLibrary") {
id = "compositebuild.android.library"
implementationClass = "AndroidLibraryConventionPlugin"
}
register("androidCompose") {
id = "compositebuild.android.compose"
implementationClass = "AndroidComposeConventionPlugin"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment