From 22f07778ae56144183db33b0c5c9c9653a2d97b7 Mon Sep 17 00:00:00 2001 From: Eric Seidel Date: Tue, 31 Mar 2026 23:09:32 -0700 Subject: [PATCH] docs: add caution about optional applicationIdSuffix in Android flavors guide Add a caution admonition noting that applicationIdSuffix is optional and may cause issues with services like Firebase that depend on consistent package names. Closes #156 --- src/content/docs/code-push/guides/flavors/android.mdx | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/content/docs/code-push/guides/flavors/android.mdx b/src/content/docs/code-push/guides/flavors/android.mdx index 54762056..0c8e0b15 100644 --- a/src/content/docs/code-push/guides/flavors/android.mdx +++ b/src/content/docs/code-push/guides/flavors/android.mdx @@ -94,6 +94,14 @@ buildTypes { +:::caution + +The `applicationIdSuffix` property is optional. If you use services that depend +on a consistent package name (e.g., Firebase), removing `applicationIdSuffix` +may be necessary to avoid configuration issues. + +::: + Lastly, edit `android/app/src/main/AndroidManifest.xml` to use the `applicationLabel` so that we can differentiate the two apps easily: