From e2f2b349b9b99ff2e11e91d9218939b22bebd008 Mon Sep 17 00:00:00 2001 From: Hossain Khan Date: Sun, 8 Feb 2026 20:08:39 -0500 Subject: [PATCH] [REVERT] Build config change --- app/build.gradle.kts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index bf57a1b..c203ca6 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -103,7 +103,8 @@ android { // Use fake API response for local development and testing purposes. // ℹ️ To override during local development, change this value to `"false"` // or, you can change the value in the `RepositoryConfigProvider` - buildConfigField("Boolean", "USE_FAKE_API", "false") + // Ideally, this value should always be set to `true` for debug builds. + buildConfigField("Boolean", "USE_FAKE_API", "true") signingConfig = signingConfigs.getByName("debug") }