Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/quite/mumla.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Lublin <daniel@lublin.se>2020-04-02 19:04:02 +0300
committerDaniel Lublin <daniel@lublin.se>2020-04-02 19:04:02 +0300
commite9e954f38c553dd2e6e81cf51285cb10b3e3c1d7 (patch)
tree0a3b884a6a2b3f40dec11b3dbca5b44b1e62a2a3
parent1e7f25a3b66d96f4fd926aa6df184815c43e0c5d (diff)
Don't minify for now, will require a lot of proguard exceptions
-rw-r--r--app/build.gradle5
1 files changed, 4 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 3ede8fe..8c4736e 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -62,9 +62,12 @@ android {
buildTypes {
release {
- minifyEnabled true
+ minifyEnabled false
if (signingFile.exists()) signingConfig signingConfigs.release
}
+ debug {
+ minifyEnabled false
+ }
}
flavorDimensions "version"