first commit

This commit is contained in:
Henry Hiles 2025-11-10 14:50:58 -05:00
commit 89a2ce5cb8
No known key found for this signature in database
83 changed files with 3433 additions and 0 deletions

26
android/build.gradle Normal file
View file

@ -0,0 +1,26 @@
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
afterEvaluate {project ->
if (project.hasProperty("android")) {
android {
compileSdkVersion 36
buildToolsVersion '33.0.1'
}
}
}
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}