feat: add android init

This commit is contained in:
YunYouJun
2025-08-17 07:08:06 +08:00
parent 5045f7f91b
commit 7b849b7e0a
41 changed files with 951 additions and 18 deletions

View File

@@ -0,0 +1,23 @@
plugins {
`kotlin-dsl`
}
gradlePlugin {
plugins {
create("pluginsForCoolKids") {
id = "rust"
implementationClass = "RustPlugin"
}
}
}
repositories {
google()
mavenCentral()
}
dependencies {
compileOnly(gradleApi())
implementation("com.android.tools.build:gradle:8.11.0")
}