2025-04-13 00:51:32 +10:00
|
|
|
rootProject.name = "Banksia"
|
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|
|
|
|
|
|
|
|
|
|
pluginManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
google {
|
|
|
|
|
mavenContent {
|
|
|
|
|
includeGroupAndSubgroups("androidx")
|
|
|
|
|
includeGroupAndSubgroups("com.android")
|
|
|
|
|
includeGroupAndSubgroups("com.google")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mavenCentral()
|
|
|
|
|
gradlePluginPortal()
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-03-25 21:14:28 +11:00
|
|
|
plugins {
|
|
|
|
|
id("org.gradle.toolchains.foojay-resolver-convention") version "1.0.0"
|
|
|
|
|
}
|
2025-04-13 00:51:32 +10:00
|
|
|
|
|
|
|
|
dependencyResolutionManagement {
|
|
|
|
|
repositories {
|
|
|
|
|
google {
|
|
|
|
|
mavenContent {
|
|
|
|
|
includeGroupAndSubgroups("androidx")
|
|
|
|
|
includeGroupAndSubgroups("com.android")
|
|
|
|
|
includeGroupAndSubgroups("com.google")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
mavenCentral()
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-25 21:10:54 +11:00
|
|
|
include(":androidApp")
|
2026-03-02 00:09:33 +11:00
|
|
|
include(":client")
|
2025-04-13 00:51:32 +10:00
|
|
|
include(":server")
|
2025-04-14 21:53:07 +10:00
|
|
|
include(":shared")
|
2026-03-02 00:09:33 +11:00
|
|
|
include(":ui")
|
2026-03-26 02:55:46 +11:00
|
|
|
include(":ui:maps")
|
|
|
|
|
include(":ui:shared")
|