Initial commit: GBCM Flutter Mobile App - Base project with Freya Theme integration

This commit is contained in:
dahoud
2025-10-07 20:12:29 +00:00
commit c2bcae05cc
128 changed files with 5015 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
}