From 2c80e04933db5c898fc26652c8ca95a13d64ae32 Mon Sep 17 00:00:00 2001 From: Finn M Glas Date: Wed, 20 May 2020 05:40:54 +0200 Subject: [PATCH] Enable minify The `.apk` and `aab` files will be obfuscated and minified to make the download file smaller. --- app/build.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 9e2449d..1a7c10f 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -18,7 +18,7 @@ android { buildTypes { release { - minifyEnabled false + minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } }