added proguard config

main
Konrad Pozniak 7 years ago
parent 632cb0d6e3
commit d23d12aa9c
  1. 5
      app/build.gradle
  2. 36
      app/proguard-rules.pro

@ -14,8 +14,9 @@ android {
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
minifyEnabled true
shrinkResources true
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}

@ -15,3 +15,39 @@
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
# public *;
#}
## for okhttp
-dontwarn okio.**
## for picasso
-dontwarn com.squareup.okhttp.**
## for retrofit
-dontwarn retrofit2.**
-keep class retrofit2.** { *; }
-keepattributes Signature
-keepattributes Exceptions
-keepattributes *Annotation*
-keepclasseswithmembers class * {
@retrofit2.http.* <methods>;
}
-keep class com.keylesspalace.tusky.entity.** { *; }
-keep public enum com.keylesspalace.tusky.entity.*$** {
**[] $VALUES;
public *;
}
# preserve line numbers for crash reporting
-keepattributes SourceFile,LineNumberTable
# remove all logging from production apk
-assumenosideeffects class android.util.Log {
public static *** d(...);
public static *** w(...);
public static *** v(...);
public static *** i(...);
}

Loading…
Cancel
Save