From 2c4e0f11d596f7021f5cabde578257f510e4c965 Mon Sep 17 00:00:00 2001 From: pradeepkumar Date: Mon, 9 Mar 2026 08:17:59 +0530 Subject: [PATCH] Add Kotlin compiler session file. --- android/app/build.gradle.kts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/android/app/build.gradle.kts b/android/app/build.gradle.kts index b766aaf..54835d9 100644 --- a/android/app/build.gradle.kts +++ b/android/app/build.gradle.kts @@ -77,7 +77,9 @@ android { buildTypes { release { - signingConfig = signingConfigs.getByName("debug") + // signingConfig is set per flavor in productFlavors above. + // Setting null here lets the flavor-level config take effect. + signingConfig = null } } }