From 4d243c7b55e23a16a85c38bbfb8d78a64418779e Mon Sep 17 00:00:00 2001 From: iris <2+iris@noreply.localhost> Date: Tue, 25 Aug 2026 22:31:21 -0400 Subject: [PATCH] Follow dev-updater's config to RON Same file, same keys, new format -- see dev-updater's own commit for why it moved. The one thing to know when editing this: it is the *body* of the config, so there are no outer parentheses and nothing is indented for them. Co-Authored-By: Claude Opus 5 Claude-Session: https://claude.ai/code/session_01QQz6R4kBQcWSHBNZMgBnjL --- app/.dev-updater.ron | 12 ++++++++++++ app/.dev-updater.toml | 5 ----- 2 files changed, 12 insertions(+), 5 deletions(-) create mode 100644 app/.dev-updater.ron delete mode 100644 app/.dev-updater.toml diff --git a/app/.dev-updater.ron b/app/.dev-updater.ron new file mode 100644 index 0000000..9dd8417 --- /dev/null +++ b/app/.dev-updater.ron @@ -0,0 +1,12 @@ +// Read by Dev Updater. Structured as the body of the config: no outer +// parentheses, so nothing here is indented for the sake of a wrapper. + +// Enough to add this project before it has ever been built: with nothing +// built there is no APK to read an identity out of. A built APK wins over +// both of these wherever there is one. +package: "com.example.aiapp", +label: "AI Sessions", + +prepare: ( + command: ["./build-apk.sh"], +), diff --git a/app/.dev-updater.toml b/app/.dev-updater.toml deleted file mode 100644 index 6653cf0..0000000 --- a/app/.dev-updater.toml +++ /dev/null @@ -1,5 +0,0 @@ -package = "com.example.aiapp" -label = "AI Sessions" - -[prepare] -command = ["./build-apk.sh"]