From c79c75c032adff73f61517accedbadafb937f2de Mon Sep 17 00:00:00 2001 From: Delicia Fernandes Date: Fri, 27 Nov 2020 08:00:05 +0530 Subject: [PATCH] Apk size reduced --- android/app/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/android/app/build.gradle b/android/app/build.gradle index ca2c65d..420084e 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -38,6 +38,8 @@ android { } defaultConfig { + resConfigs "en" + // TODO: Specify your own unique Application ID (https://developer.android.com/studio/build/application-id.html). applicationId "com.example.checklst" minSdkVersion 23 @@ -51,6 +53,8 @@ android { // TODO: Add your own signing config for the release build. // Signing with the debug keys for now, so `flutter run --release` works. signingConfig signingConfigs.debug + + shrinkResources true } } }