litecloud/lightcloud_app/android/build.gradle
Mercurio b50fbdcaef feat: add initial Flutter project structure and auth screen
This commit introduces the initial setup for the Lightcloud Flutter application including:
- Basic project structure with Android and web configurations
- Authentication screen with login/register functionality
- Initial UI components and theme setup
2025-05-28 23:52:05 +02:00

19 lines
322 B
Groovy

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
}