Browse Source

Enable proguard and wire up rules

Signed-off-by: Harsh Shandilya <me@msfjarvis.dev>
master
Harsh Shandilya 5 years ago
parent
commit
495bf9c954
2 changed files with 7 additions and 0 deletions
  1. +2
    -0
      app/build.gradle
  2. +5
    -0
      app/proguard-rules.pro

+ 2
- 0
app/build.gradle View File

@@ -46,6 +46,8 @@ android {
arguments "-DANDROID_PACKAGE_NAME=${android.defaultConfig.applicationId}"
}
}
minifyEnabled true
proguardFiles getDefaultProguardFile("proguard-android.txt"), "proguard-rules.pro"
}
debug {
applicationIdSuffix ".debug"


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

@@ -0,0 +1,5 @@
# Squelch all warnings, they're harmless but ProGuard
# escalates them as errors.
-dontwarn sun.misc.Unsafe
# We're OSS anyway and who doesn't love a readable log
-dontobfuscate

Loading…
Cancel
Save