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,22 @@
buildscript {
repositories {
google()
mavenCentral()
}
dependencies {
classpath("com.android.tools.build:gradle:8.5.1")
classpath("org.jetbrains.kotlin:kotlin-gradle-plugin:1.9.25")
}
}
allprojects {
repositories {
google()
mavenCentral()
}
}
tasks.register("clean").configure {
delete("build")
}