From be2aae1ba0f3a2c1220c6229826b5fbf636631ba Mon Sep 17 00:00:00 2001 From: Achintha Isuru Date: Sun, 1 Mar 2026 21:35:10 -0500 Subject: [PATCH] feat: Update keystore file paths in key.properties for client and staff configurations --- apps/mobile/apps/client/android/key.properties | 2 +- apps/mobile/apps/staff/android/app/build.gradle.kts | 5 +++-- apps/mobile/apps/staff/android/key.properties | 2 +- 3 files changed, 5 insertions(+), 4 deletions(-) diff --git a/apps/mobile/apps/client/android/key.properties b/apps/mobile/apps/client/android/key.properties index b07f333c..664c5c60 100644 --- a/apps/mobile/apps/client/android/key.properties +++ b/apps/mobile/apps/client/android/key.properties @@ -1,7 +1,7 @@ storePassword=krowwithus keyPassword=krowwithus keyAlias=krow_client_dev -storeFile=app/krow_with_us_client_dev.jks +storeFile=krow_with_us_client_dev.jks ### ### Client diff --git a/apps/mobile/apps/staff/android/app/build.gradle.kts b/apps/mobile/apps/staff/android/app/build.gradle.kts index 135ca04e..9e3968be 100644 --- a/apps/mobile/apps/staff/android/app/build.gradle.kts +++ b/apps/mobile/apps/staff/android/app/build.gradle.kts @@ -74,9 +74,10 @@ android { } buildTypes { + debug { + signingConfig = signingConfigs.getByName("release") + } release { - // TODO: Add your own signing config for the release build. - // Signing with the debug keys for now, so `flutter run --release` works. signingConfig = signingConfigs.getByName("release") } } diff --git a/apps/mobile/apps/staff/android/key.properties b/apps/mobile/apps/staff/android/key.properties index 94fa9453..6fcbc206 100644 --- a/apps/mobile/apps/staff/android/key.properties +++ b/apps/mobile/apps/staff/android/key.properties @@ -1,7 +1,7 @@ storePassword=krowwithus keyPassword=krowwithus keyAlias=krow_staff_dev -storeFile=app/krow_with_us_staff_dev.jks +storeFile=krow_with_us_staff_dev.jks ### ### Staff