Files
iris b0e83059a3 dev-updater: build an app on the machine, install it on the phone
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.
2026-08-31 20:31:08 -04:00

18 lines
769 B
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- Template. build-apk.sh substitutes __PACKAGE__ and __LABEL__; the SDK
levels are passed to aapt2 on the command line rather than written
here, so there is one place they are set for every test app. -->
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="__PACKAGE__">
<application android:label="__LABEL__">
<activity
android:name="com.example.dutest.stub.StubActivity"
android:exported="true">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
</manifest>