From 9ca91a6b2d805ed5f57577937fa8a35eeef3a032 Mon Sep 17 00:00:00 2001 From: Ruben Date: Thu, 8 Sep 2016 00:01:19 +0100 Subject: [PATCH] Enable minify in config --- app/build.gradle | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/build.gradle b/app/build.gradle index 1cbc78d..af15434 100644 --- a/app/build.gradle +++ b/app/build.gradle @@ -1,6 +1,8 @@ apply plugin: 'com.android.application' android { + signingConfigs { + } compileSdkVersion 23 buildToolsVersion '23.0.1' defaultConfig { @@ -13,7 +15,7 @@ android { } buildTypes { release { - minifyEnabled false + minifyEnabled true proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } }