From 1520ac90772e3c792c597a9877ef6afc0e4ef431 Mon Sep 17 00:00:00 2001 From: TacoTheDank Date: Fri, 31 Jul 2020 21:31:25 -0400 Subject: [PATCH] Reduce APK size by excluding META-INF --- app/build.gradle | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 70fcd8f..91533bd 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -29,6 +29,10 @@ android { disable 'MissingTranslation', 'GoogleAppIndexingWarning' } + packagingOptions { + exclude 'META-INF/*' + } + buildTypes { release { minifyEnabled true