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
19 lines
322 B
Groovy
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
|
|
}
|