aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDocile-Alligator <chineseperson5@gmail.com>2020-07-09 16:36:05 +0000
committerGitHub <noreply@github.com>2020-07-09 16:36:05 +0000
commit98f4da3868b5caf1082347f97faea49db595091d (patch)
treee8fb13c4504a6d87531f0277cdf5193716bfa810
parentbc8eea15ac737019a49bb721ba17897c3dcb9608 (diff)
parent105a5642ea7291d589cf294c36e0500ebb101e42 (diff)
downloadinfinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.tar
infinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.tar.gz
infinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.tar.bz2
infinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.tar.lz
infinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.tar.xz
infinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.tar.zst
infinity-for-reddit-98f4da3868b5caf1082347f97faea49db595091d.zip
Merge pull request #153 from OHermesJunior/proguard-on
Add minified Release.
-rw-r--r--app/build.gradle9
-rw-r--r--app/proguard-rules.pro21
2 files changed, 29 insertions, 1 deletions
diff --git a/app/build.gradle b/app/build.gradle
index f91b8aad..592a625d 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -20,6 +20,13 @@ android {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
+ minifiedRelease {
+ initWith buildTypes.release
+ zipAlignEnabled true
+ minifyEnabled true
+ shrinkResources true
+ proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
+ }
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
@@ -90,7 +97,7 @@ dependencies {
// androidX startup for auto-init
implementation "androidx.startup:startup-runtime:1.0.0-alpha01"
//crashy
- implementation 'com.github.CraZyLegenD:Crashy:1.0.4'
+ implementation 'com.github.CraZyLegenD:Crashy:1.0.5'
def toroVersion = '3.7.0.2010003'
implementation "im.ene.toro3:toro:$toroVersion"
diff --git a/app/proguard-rules.pro b/app/proguard-rules.pro
new file mode 100644
index 00000000..50b179d4
--- /dev/null
+++ b/app/proguard-rules.pro
@@ -0,0 +1,21 @@
+# Uncomment this to preserve the line number information for
+# debugging stack traces.
+#-keepattributes SourceFile,LineNumberTable
+
+# If you keep the line number information, uncomment this to
+# hide the original source file name.
+#-renamesourcefileattribute SourceFile
+
+## Preferences reflection
+-keep class * extends androidx.preference.PreferenceFragmentCompat
+
+## EventBus Rules
+-keepattributes *Annotation*
+-keepclassmembers class * {
+ @org.greenrobot.eventbus.Subscribe <methods>;
+}
+-keep enum org.greenrobot.eventbus.ThreadMode { *; }
+# And if you use AsyncExecutor:
+-keepclassmembers class * extends org.greenrobot.eventbus.util.ThrowableFailureEvent {
+ <init>(java.lang.Throwable);
+}