rootProject.name = "AiApp" pluginManagement { repositories { google() gradlePluginPortal() mavenCentral() } } dependencyResolutionManagement { repositories { google() mavenCentral() } } include(":androidApp") // E3 (RUST.md): the Kotlin/Java shell over android-shell's JNI bridge, a // separate module from :androidApp so the ~13,000 lines of working Compose // UI there are untouched. See shellApp/build.gradle.kts's module comment. include(":shellApp") // The app half of wg-app-link, resolved by path through the submodule so // this checkout and the crate it consumes move together -- the same // arrangement `server/` uses for the Rust half. See that repo's README. include(":link") project(":link").projectDir = file("../wg-app-link/app")