From 4361230c476727ad57e5d51769231cd4d281de13 Mon Sep 17 00:00:00 2001 From: Satoshi Qazi Muhammed Date: Sat, 13 Jun 2026 08:13:22 -0700 Subject: [PATCH] fix(build): bind production google-services to develop variant develop now uses the base io.pezkuwichain.wallet applicationId, whose google-services client is in the production google-services.json (the DEV google-services.json only has a .debug client). Extend the release-binding task to copy src/release/google-services.json into src/develop so processDevelopGoogleServices finds a matching client. --- app/build.gradle | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 64705fb..d7ec954 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -121,7 +121,10 @@ android { applicationVariants.all { variant -> String name = variant.buildType.name - if (name != "release" && name.startsWith("release")) { + // 'develop' now shares the base io.pezkuwichain.wallet applicationId, whose + // google-services client lives in the production google-services.json — so bind + // it for develop too (the DEV google-services.json has no matching client). + if ((name != "release" && name.startsWith("release")) || name == "develop") { createBindReleaseFileTask(variant.buildType.name) } }