Set up android app

This commit is contained in:
Joscha 2025-01-21 23:41:47 +01:00
parent aab7973928
commit 56d6be7e2f
41 changed files with 908 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")
}