initial commit

This commit is contained in:
Osman Faruk Bayram 2025-04-29 15:52:41 +03:00
commit 7ec1c5cc5a
73 changed files with 2012 additions and 0 deletions

18
android/build.gradle Normal file
View file

@ -0,0 +1,18 @@
allprojects {
repositories {
google()
mavenCentral()
}
}
rootProject.buildDir = "../build"
subprojects {
project.buildDir = "${rootProject.buildDir}/${project.name}"
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register("clean", Delete) {
delete rootProject.buildDir
}