From 957ba531bc5f0708401a1df22b3eb2490aa1fe7b Mon Sep 17 00:00:00 2001 From: Daniel Date: Wed, 15 Apr 2026 00:13:11 +0200 Subject: [PATCH] docs: clarify com.pedshub.scribe is the Android applicationId, not a quiz-app ref --- docs/mobile-build.md | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/docs/mobile-build.md b/docs/mobile-build.md index 710c1ec..2281bb3 100644 --- a/docs/mobile-build.md +++ b/docs/mobile-build.md @@ -99,9 +99,16 @@ adb install -r android/app/build/outputs/apk/release/app-release.apk ## Files +Note on `com.pedshub.scribe`: that's the Android applicationId — the OS-level +unique identifier for this app. Chosen by reverse-DNS of `pedshub.com`. It is +**not** a reference to the separate PedsHub Quiz app; they share a prefix by +coincidence. Don't rename it — Android treats applicationId as the primary +key; renaming breaks Play Store update continuity and forces every installed +user to uninstall + reinstall. + | Path | Purpose | |---|---| -| `mobile/capacitor.config.json` | app ID, name, WebView config, plugin opts | +| `mobile/capacitor.config.json` | appId, name, WebView config, plugin opts | | `mobile/src/` | launcher HTML (server URL entry) | | `mobile/android/app/src/main/java/com/pedshub/scribe/MainActivity.java` | JS bridge + WebView mic permission | | `mobile/android/app/src/main/java/com/pedshub/scribe/AudioRecordingService.java` | foreground service for background recording |