From 7287ebbf499a7ecc65e84867061527c1f4ac6668 Mon Sep 17 00:00:00 2001 From: Phil Oliver <3497406+poliver@users.noreply.github.com> Date: Tue, 7 Oct 2025 06:22:32 -0400 Subject: [PATCH] Fix google build (#3371) --- app/build.gradle.kts | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index 6355e4180..9fc38d7a4 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -140,6 +140,13 @@ android { // Configure existing product flavors (defined by convention plugin) // with their dynamic version names. productFlavors { + all { + if (name == "google") { + apply(plugin = libs.plugins.google.services.get().pluginId) + apply(plugin = libs.plugins.firebase.crashlytics.get().pluginId) + } + } + named("google") { versionName = "${defaultConfig.versionName} (${defaultConfig.versionCode}) google" } named("fdroid") { versionName = "${defaultConfig.versionName} (${defaultConfig.versionCode}) fdroid" } }