23 lines
365 B
Kotlin
23 lines
365 B
Kotlin
plugins {
|
|
`kotlin-dsl`
|
|
}
|
|
|
|
repositories {
|
|
mavenCentral()
|
|
google()
|
|
}
|
|
|
|
gradlePlugin {
|
|
plugins {
|
|
register("common-android-plugin") {
|
|
id = "common-android-plugin"
|
|
implementationClass = "CommonAndroidPlugin"
|
|
}
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
implementation("com.android.tools.build:gradle:8.2.0")
|
|
implementation(kotlin("gradle-plugin", "1.9.20"))
|
|
}
|