feat: Update application status handling and improve build configuration

- Added handling for the COMPLETED application status in the CoverageRepositoryImpl to return 'confirmed'.
- Updated mobile client build and run commands in the makefile to include `--dart-define-from-file=../../config.dev.json` for better configuration management.
This commit is contained in:
Achintha Isuru
2026-02-01 13:20:24 -05:00
parent 6d70bcc5d0
commit 9f8b60d571
5 changed files with 3 additions and 5978 deletions

View File

@@ -22,7 +22,7 @@ mobile-info:
# --- Client App ---
mobile-client-dev-android:
@echo "--> Running client app on Android (device: $(DEVICE))..."
@cd $(MOBILE_DIR) && melos run start:client -- -d $(DEVICE)
@cd $(MOBILE_DIR) && melos run start:client -- -d $(DEVICE) --dart-define-from-file=../../config.dev.json
mobile-client-build:
@if [ -z "$(PLATFORM)" ]; then \
@@ -33,7 +33,7 @@ mobile-client-build:
@cd $(MOBILE_DIR) && \
melos exec --scope="core_localization" -- "dart run slang" && \
melos exec --scope="core_localization" -- "dart run build_runner build --delete-conflicting-outputs" && \
melos exec --scope="krowwithus_client" -- "flutter build $(PLATFORM) --$(MODE)"
melos exec --scope="krowwithus_client" -- "flutter build $(PLATFORM) --$(MODE) --dart-define-from-file=../../config.dev.json"
# --- Staff App ---
mobile-staff-dev-android: