From 2162b5493ed8b5a658d326623a97a53b93269899 Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Fri, 20 Feb 2026 01:33:15 -0500 Subject: [PATCH] fix: Change build mode from 'dev' to 'debug' for mobile client and staff apps --- .github/workflows/mobile-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mobile-ci.yml b/.github/workflows/mobile-ci.yml index 4d53bdd5..3230c8c6 100644 --- a/.github/workflows/mobile-ci.yml +++ b/.github/workflows/mobile-ci.yml @@ -89,13 +89,13 @@ jobs: - name: 🔨 Run compilation check run: | echo "🏗️ Building client app for Android (dev mode)..." - make mobile-client-build PLATFORM=apk MODE=dev 2>&1 | tee client_build.txt || true + make mobile-client-build PLATFORM=apk MODE=debug 2>&1 | tee client_build.txt || true echo "" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━" echo "🏗️ Building staff app for Android (dev mode)..." - make mobile-staff-build PLATFORM=apk MODE=dev 2>&1 | tee staff_build.txt || true + make mobile-staff-build PLATFORM=apk MODE=debug 2>&1 | tee staff_build.txt || true echo "" echo "━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"