From 335208fc1c10a53a324105915091efcaebb1a1af Mon Sep 17 00:00:00 2001 From: Joseph Maynard Date: Fri, 3 Jul 2026 12:43:35 +0100 Subject: [PATCH] Android host: name the app "LOAM" (was the Expo scaffold default "app") MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The generated Expo config still had name/slug "app", so the installed APK showed up in the launcher as "app" with a default label — hard to find. Set the app name to "LOAM" (and slug to "loam"); the package id (app.loam.host) is unchanged. Requires a rebuild (prebuild regenerates the Android label from expo.name). Co-Authored-By: Claude Opus 4.8 --- apps/app/app.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/app/app.json b/apps/app/app.json index abf4cb3..9a5b86c 100644 --- a/apps/app/app.json +++ b/apps/app/app.json @@ -1,7 +1,7 @@ { "expo": { - "name": "app", - "slug": "app", + "name": "LOAM", + "slug": "loam", "version": "1.0.0", "orientation": "portrait", "icon": "./assets/images/icon.png",