|
|
|
@ -54,45 +54,35 @@ tasks {
|
|
|
|
|
|
|
|
|
|
gradlePlugin {
|
|
|
|
|
plugins {
|
|
|
|
|
register("androidApplicationCompose") {
|
|
|
|
|
id = "nowinandroid.android.application.compose"
|
|
|
|
|
implementationClass = "AndroidApplicationComposeConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidApplication") {
|
|
|
|
|
id = "nowinandroid.android.application"
|
|
|
|
|
implementationClass = "AndroidApplicationConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidApplicationCompose") {
|
|
|
|
|
id = "nowinandroid.android.application.compose"
|
|
|
|
|
implementationClass = "AndroidApplicationComposeConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidApplicationJacoco") {
|
|
|
|
|
id = "nowinandroid.android.application.jacoco"
|
|
|
|
|
implementationClass = "AndroidApplicationJacocoConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidLibraryCompose") {
|
|
|
|
|
id = "nowinandroid.android.library.compose"
|
|
|
|
|
implementationClass = "AndroidLibraryComposeConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
register("androidLibrary") {
|
|
|
|
|
id = "nowinandroid.android.library"
|
|
|
|
|
implementationClass = "AndroidLibraryConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidFeature") {
|
|
|
|
|
id = "nowinandroid.android.feature"
|
|
|
|
|
implementationClass = "AndroidFeatureConventionPlugin"
|
|
|
|
|
register("androidLibraryCompose") {
|
|
|
|
|
id = "nowinandroid.android.library.compose"
|
|
|
|
|
implementationClass = "AndroidLibraryComposeConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidLibraryJacoco") {
|
|
|
|
|
id = "nowinandroid.android.library.jacoco"
|
|
|
|
|
implementationClass = "AndroidLibraryJacocoConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidTest") {
|
|
|
|
|
id = "nowinandroid.android.test"
|
|
|
|
|
implementationClass = "AndroidTestConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidHilt") {
|
|
|
|
|
id = "nowinandroid.android.hilt"
|
|
|
|
|
implementationClass = "AndroidHiltConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidRoom") {
|
|
|
|
|
id = "nowinandroid.android.room"
|
|
|
|
|
implementationClass = "AndroidRoomConventionPlugin"
|
|
|
|
|
|
|
|
|
|
register("androidFeature") {
|
|
|
|
|
id = "nowinandroid.android.feature"
|
|
|
|
|
implementationClass = "AndroidFeatureConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidFirebase") {
|
|
|
|
|
id = "nowinandroid.android.application.firebase"
|
|
|
|
@ -106,6 +96,18 @@ gradlePlugin {
|
|
|
|
|
id = "nowinandroid.android.lint"
|
|
|
|
|
implementationClass = "AndroidLintConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidHilt") {
|
|
|
|
|
id = "nowinandroid.android.hilt"
|
|
|
|
|
implementationClass = "AndroidHiltConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidRoom") {
|
|
|
|
|
id = "nowinandroid.android.room"
|
|
|
|
|
implementationClass = "AndroidRoomConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("androidTest") {
|
|
|
|
|
id = "nowinandroid.android.test"
|
|
|
|
|
implementationClass = "AndroidTestConventionPlugin"
|
|
|
|
|
}
|
|
|
|
|
register("jvmLibrary") {
|
|
|
|
|
id = "nowinandroid.jvm.library"
|
|
|
|
|
implementationClass = "JvmLibraryConventionPlugin"
|
|
|
|
|