From 327e2de63742e30edf9241a39c7dc1fb361cbbc5 Mon Sep 17 00:00:00 2001 From: ale5000 <15793015+ale5000-git@users.noreply.github.com> Date: Thu, 21 Mar 2024 23:00:17 +0100 Subject: [PATCH] Disable some optimizations on debug builds (#2250) --- vending-app/build.gradle | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/vending-app/build.gradle b/vending-app/build.gradle index 7347a81b25..c8281eef76 100644 --- a/vending-app/build.gradle +++ b/vending-app/build.gradle @@ -23,9 +23,9 @@ android { debug { postprocessing { removeUnusedCode true - removeUnusedResources true + removeUnusedResources false obfuscate false - optimizeCode true + optimizeCode false } } release { @@ -135,4 +135,4 @@ android.applicationVariants.all { variant -> variant.outputs.each { output -> output.outputFileName = variant.applicationId + "-" + variant.versionCode + variant.versionName.substring(vendingAppVersionName.length()) + ".apk" } -} \ No newline at end of file +}