You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
77 lines
2.6 KiB
77 lines
2.6 KiB
/*
|
|
* Copyright 2022 The Android Open Source Project
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* https://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
group = "com.google.samples.apps.nowinandroid.buildlogic"
|
|
|
|
java {
|
|
sourceCompatibility = JavaVersion.VERSION_11
|
|
targetCompatibility = JavaVersion.VERSION_11
|
|
}
|
|
|
|
dependencies {
|
|
compileOnly(libs.android.gradlePlugin)
|
|
compileOnly(libs.kotlin.gradlePlugin)
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("androidApplicationCompose") {
|
|
id = "nowinandroid.android.application.compose"
|
|
implementationClass = "AndroidApplicationComposeConventionPlugin"
|
|
}
|
|
register("androidApplication") {
|
|
id = "nowinandroid.android.application"
|
|
implementationClass = "AndroidApplicationConventionPlugin"
|
|
}
|
|
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("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("firebase-perf") {
|
|
id = "nowinandroid.firebase-perf"
|
|
implementationClass = "FirebasePerfConventionPlugin"
|
|
}
|
|
}
|
|
}
|