Files
PotatoMessenger/client/android/build.gradle.kts
fegor101 6f9c7f95bf initializate client, server, shared
- initializated base structure of server
 - initializated base structure of client
 - initializated base structure of shared(lib for client and server)
2026-04-03 22:25:31 +03:00

25 lines
537 B
Kotlin

allprojects {
repositories {
google()
mavenCentral()
}
}
val newBuildDir: Directory =
rootProject.layout.buildDirectory
.dir("../../build")
.get()
rootProject.layout.buildDirectory.value(newBuildDir)
subprojects {
val newSubprojectBuildDir: Directory = newBuildDir.dir(project.name)
project.layout.buildDirectory.value(newSubprojectBuildDir)
}
subprojects {
project.evaluationDependsOn(":app")
}
tasks.register<Delete>("clean") {
delete(rootProject.layout.buildDirectory)
}