From ba545aa595c8fce7c064ff71ebbfd499840a03f2 Mon Sep 17 00:00:00 2001 From: iris <2+iris@noreply.localhost> Date: Tue, 25 Aug 2026 16:57:36 -0400 Subject: [PATCH] Declare the phone build step for Dev Updater Dev Updater serves this app's APK to the phone. Carrying the build step here rather than in that machine's config keeps it with the project that knows it, and means a second build machine doesn't have to work it out again. package and label are declared too, so the project can be added from a fresh clone with nothing built: without them there is no APK to read an identity out of, and adding it is the prerequisite for running the build step that would produce the first one. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_012iK6pJhPvKjSFwxK4DkCqM --- app/.dev-updater.toml | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 app/.dev-updater.toml diff --git a/app/.dev-updater.toml b/app/.dev-updater.toml new file mode 100644 index 0000000..6653cf0 --- /dev/null +++ b/app/.dev-updater.toml @@ -0,0 +1,5 @@ +package = "com.example.aiapp" +label = "AI Sessions" + +[prepare] +command = ["./build-apk.sh"]