From 84978e147eaaa7fb670be3a1e96e26c40cb40bc2 Mon Sep 17 00:00:00 2001 From: Satoshi Qazi Muhammed Date: Sat, 13 Jun 2026 07:29:57 -0700 Subject: [PATCH] fix(build): develop variant uses base applicationId io.pezkuwichain.wallet The develop build type appended a '.dev' applicationIdSuffix, producing io.pezkuwichain.wallet.dev, which has no matching client in the google-services.json and broke every PR/develop build at processDevelopGoogleServices. Drop the suffix so develop uses the base io.pezkuwichain.wallet identity (keeps the -develop versionName suffix). --- app/build.gradle | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 2065a25..64705fb 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -80,7 +80,8 @@ android { signingConfig signingConfigs.dev matchingFallbacks = ['debug'] versionNameSuffix '-develop' - applicationIdSuffix '.dev' + // Use the base applicationId (io.pezkuwichain.wallet) — no ".dev" suffix — + // so it matches the registered google-services client. //Init firebase def localReleaseNotes = releaseNotes() def localFirebaseGroup = firebaseGroup()