A Rust backend that discovers Android projects under configured roots, builds one on request, and serves the APK over pinned TLS on a WireGuard interface; an Android client that lists what is buildable, watches a build, and installs the result. Enrolment carries the token and the CA, so the phone trusts exactly the machine that issued it and nothing else. `AGENTS.md` is the working guide and `README.md` the configuration reference. The shared tunnel-and-TLS code lives in `vendor/wg-app-link`, which ai-app uses too. History before this point was squashed away, and a stale `config.json` went with it: nothing had read that file since the config moved to RON outside the checkout, and what it still held was one machine's absolute paths and the names of projects on it.
26 lines
575 B
Kotlin
26 lines
575 B
Kotlin
rootProject.name = "DevUpdater"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
google()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
}
|
|
}
|
|
|
|
include(":androidApp")
|
|
|
|
// The shared link, as a subproject of this build rather than a published
|
|
// artifact, so it stays locked to whatever commit the submodule points at
|
|
// -- the same arrangement the Rust half uses with a path dependency.
|
|
include(":link")
|
|
|
|
project(":link").projectDir = file("../vendor/wg-app-link/app")
|