Extract application build setup to plugin
This commit is contained in:
19
build-logic/convention/build.gradle.kts
Normal file
19
build-logic/convention/build.gradle.kts
Normal file
@@ -0,0 +1,19 @@
|
||||
plugins {
|
||||
`kotlin-dsl`
|
||||
}
|
||||
|
||||
group = "gq.kirmanak.mealient.buildlogic"
|
||||
|
||||
dependencies {
|
||||
implementation(libs.jetbrains.kotlinPlugin)
|
||||
implementation(libs.android.gradlePlugin)
|
||||
}
|
||||
|
||||
gradlePlugin {
|
||||
plugins {
|
||||
register("androidApplication") {
|
||||
id = "gq.kirmanak.mealient.application"
|
||||
implementationClass = "AndroidApplicationConventionPlugin"
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user