From cb344f1168eb5403817466b0d1b50fbacda087fa Mon Sep 17 00:00:00 2001 From: Felipe Oliveira <31748519+felipedavi@users.noreply.github.com> Date: Wed, 4 Sep 2024 06:14:17 -0300 Subject: [PATCH] =?UTF-8?q?build[config]:=20Atualiza=20configura=C3=A7?= =?UTF-8?q?=C3=B5es=20de=20build=20com=20isShrinkResources=20=3D=20true=20?= =?UTF-8?q?e=20isDebuggable=20=3D=20false=20no=20build.gradle.kts=20(:app)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/build.gradle.kts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app/build.gradle.kts b/app/build.gradle.kts index e5a5da4..331173b 100644 --- a/app/build.gradle.kts +++ b/app/build.gradle.kts @@ -21,6 +21,8 @@ android { buildTypes { getByName("release") { isMinifyEnabled = true + isShrinkResources = true + isDebuggable = false proguardFiles(getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro") } }