Browse Source

android: don't use proguard on debug builds

It's not necessary and makes the build faster.
master
Saúl Ibarra Corretgé 6 years ago
parent
commit
eb15f73e59
2 changed files with 0 additions and 7 deletions
  1. 0
    2
      android/app/build.gradle
  2. 0
    5
      android/app/proguard-rules-debug.pro

+ 0
- 2
android/app/build.gradle View File

@@ -34,8 +34,6 @@ android {
34 34
 
35 35
     buildTypes {
36 36
         debug {
37
-            minifyEnabled true
38
-            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules-debug.pro'
39 37
             buildConfigField "boolean", "GOOGLE_SERVICES_ENABLED", "${googleServicesEnabled}"
40 38
             buildConfigField "boolean", "LIBRE_BUILD", "${rootProject.ext.libreBuild}"
41 39
         }

+ 0
- 5
android/app/proguard-rules-debug.pro View File

@@ -1,5 +0,0 @@
1
--include proguard-rules.pro
2
-
3
-# Disabling obfuscation is useful if you collect stack traces from production crashes
4
-# (unless you are using a system that supports de-obfuscate the stack traces).
5
--dontobfuscate

Loading…
Cancel
Save