From 6226b0a8302d637642a2f40dbe2289cd4607648d Mon Sep 17 00:00:00 2001 From: Alexander Capehart Date: Sat, 4 Mar 2023 22:11:55 -0700 Subject: [PATCH] build: remove junk files in apk Remove build junk from the APK. Removes another ~100kb or so. --- app/build.gradle | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/build.gradle b/app/build.gradle index 458c470b5..40abb5275 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -57,6 +57,14 @@ android { } } + packagingOptions { + exclude "DebugProbesKt.bin" + exclude "kotlin-tooling-metadata.json" + exclude "**/kotlin/**" + exclude "**/okhttp3/**" + exclude "META-INF/*.version" + } + buildFeatures { viewBinding true }