mirror of https://github.com/tuskyapp/Tusky.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
102 lines
3.2 KiB
102 lines
3.2 KiB
# GENERAL OPTIONS |
|
|
|
# turn on all optimizations except those that are known to cause problems on Android |
|
-optimizations !code/simplification/cast,!field/*,!class/merging/* |
|
-optimizationpasses 6 |
|
-allowaccessmodification |
|
-dontpreverify |
|
|
|
-dontusemixedcaseclassnames |
|
-dontskipnonpubliclibraryclasses |
|
-keepattributes *Annotation* |
|
|
|
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native |
|
-keepclasseswithmembernames class * { |
|
native <methods>; |
|
} |
|
# keep setters in Views so that animations can still work. |
|
# see http://proguard.sourceforge.net/manual/examples.html#beans |
|
-keepclassmembers public class * extends android.view.View { |
|
void set*(***); |
|
*** get*(); |
|
} |
|
# We want to keep methods in Activity that could be used in the XML attribute onClick |
|
-keepclassmembers class * extends android.app.Activity { |
|
public void *(android.view.View); |
|
} |
|
# For enumeration classes, see http://proguard.sourceforge.net/manual/examples.html#enumerations |
|
-keepclassmembers enum * { |
|
public static **[] values(); |
|
public static ** valueOf(java.lang.String); |
|
} |
|
-keepclassmembers class * implements android.os.Parcelable { |
|
public static final android.os.Parcelable$Creator CREATOR; |
|
} |
|
-keepclassmembers class **.R$* { |
|
public static <fields>; |
|
} |
|
# The support library contains references to newer platform versions. |
|
# Don't warn about those in case this app is linking against an older |
|
# platform version. We know about them, and they are safe. |
|
-dontwarn android.support.** |
|
|
|
|
|
# TUSKY SPECIFIC OPTIONS |
|
|
|
## for okhttp |
|
-dontwarn javax.annotation.** |
|
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase |
|
-dontwarn org.codehaus.mojo.animal_sniffer.* |
|
-dontwarn okhttp3.internal.platform.ConscryptPlatform |
|
|
|
## for picasso |
|
-dontwarn com.squareup.okhttp.** |
|
|
|
##for keep |
|
-dontwarn android.arch.util.paging.CountedDataSource |
|
-dontwarn android.arch.persistence.room.paging.LimitOffsetDataSource |
|
|
|
## 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 |
|
-renamesourcefileattribute SourceFile |
|
|
|
# remove all logging from production apk |
|
-assumenosideeffects class android.util.Log { |
|
public static *** getStackTraceString(...); |
|
public static *** d(...); |
|
public static *** w(...); |
|
public static *** v(...); |
|
public static *** i(...); |
|
} |
|
|
|
# remove some kotlin overhead |
|
-assumenosideeffects class kotlin.jvm.internal.Intrinsics { |
|
static void checkParameterIsNotNull(java.lang.Object, java.lang.String); |
|
static void checkExpressionValueIsNotNull(java.lang.Object, java.lang.String); |
|
static void throwUninitializedPropertyAccessException(java.lang.String); |
|
} |
|
|
|
-dontwarn com.google.errorprone.annotations.* |
|
|
|
# work around a bug in proguard |
|
# see https://sourceforge.net/p/proguard/bugs/729/ |
|
-keepnames public interface com.uber.autodispose.lifecycle.CorrespondingEventsFunction { *; }
|
|
|