Set up android app

This commit is contained in:
Joscha 2025-01-25 13:26:04 +01:00
parent 6ac80ab679
commit d571809b5a
42 changed files with 908 additions and 0 deletions

View file

@ -0,0 +1,22 @@
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")
}