// SPDX-FileCopyrightText: 2026 Echolot contributors // SPDX-License-Identifier: GPL-3.0-or-later pluginManagement { repositories { google() mavenCentral() gradlePluginPortal() } } dependencyResolutionManagement { repositories { google() mavenCentral() } } rootProject.name = "echolot-app" // core-protocol is a pure Kotlin/JVM module (the client side of // probe-protocol.md) so it builds and unit-tests without the Android SDK and // can run integration tests against a live server. Android modules // (core-probe, core-shizuku, app) join as they land. include(":core-protocol") include(":core-measurement") include(":core-engine") include(":core-privacy") include(":core-archive") include(":core-probe") include(":core-shizuku") include(":app") include(":adb-beacon")