This commit is contained in:
coco
2026-07-16 09:43:06 +08:00
parent 95aa018b8b
commit 63bb06ff63
95 changed files with 6004 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
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"))
}