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")
|
2025-04-13 00:51:32 +10:00
|
|
|
include(":server")
|
2026-03-31 23:12:54 +11:00
|
|
|
include(":server:gtfs")
|
|
|
|
|
include(":server:gtfs_rt")
|
2026-04-02 01:57:08 +11:00
|
|
|
include(":core")
|
|
|
|
|
include(":core:data")
|
2026-04-02 21:55:45 +11:00
|
|
|
include(":core:data:client")
|
|
|
|
|
include(":core:data:server")
|
2026-04-02 01:57:08 +11:00
|
|
|
include(":core:room")
|
2026-03-02 00:09:33 +11:00
|
|
|
include(":ui")
|
2026-03-26 02:55:46 +11:00
|
|
|
include(":ui:maps")
|
|
|
|
|
include(":ui:shared")
|