From 0910411df72d8cc2dd1340bdd6100d5747336792 Mon Sep 17 00:00:00 2001 From: bigcupcoffee <24373206+bigcupcoffee@users.noreply.github.com> Date: Fri, 19 Dec 2025 19:52:37 +0200 Subject: [PATCH 1/2] Update debuggableVariants comments to include debugOptimized --- template/android/app/build.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/template/android/app/build.gradle b/template/android/app/build.gradle index c6a92bd6..80c41270 100644 --- a/template/android/app/build.gradle +++ b/template/android/app/build.gradle @@ -19,9 +19,9 @@ react { /* Variants */ // The list of variants to that are debuggable. For those we're going to - // skip the bundling of the JS bundle and the assets. By default is just 'debug'. + // skip the bundling of the JS bundle and the assets. By default is just 'debug', 'debugOptimized'. // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. - // debuggableVariants = ["liteDebug", "prodDebug"] + // debuggableVariants = ["liteDebug", "liteDebugOptimized", "prodDebug", "prodDebugOptimized"] /* Bundling */ // A list containing the node command and its flags. Default is just 'node'. From 29f5db60201fa597358de13d4df7ed1b65aec152 Mon Sep 17 00:00:00 2001 From: bigcupcoffee <24373206+bigcupcoffee@users.noreply.github.com> Date: Sun, 21 Dec 2025 01:55:54 +0200 Subject: [PATCH 2/2] Some rewording --- template/android/app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/template/android/app/build.gradle b/template/android/app/build.gradle index 80c41270..69e47e2b 100644 --- a/template/android/app/build.gradle +++ b/template/android/app/build.gradle @@ -19,7 +19,7 @@ react { /* Variants */ // The list of variants to that are debuggable. For those we're going to - // skip the bundling of the JS bundle and the assets. By default is just 'debug', 'debugOptimized'. + // skip the bundling of the JS bundle and the assets. Default is "debug", "debugOptimized". // If you add flavors like lite, prod, etc. you'll have to list your debuggableVariants. // debuggableVariants = ["liteDebug", "liteDebugOptimized", "prodDebug", "prodDebugOptimized"]