Working on android build

This commit is contained in:
Adrian Osterwind 2024-11-15 16:38:34 +01:00
parent 20dc11ef06
commit a04fd0293f
41 changed files with 907 additions and 0 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.5.1")
}