2017-01-03 10:30:27 +11:00
|
|
|
# Add project specific ProGuard rules here.
|
|
|
|
# By default, the flags in this file are appended to flags specified
|
|
|
|
# in /home/andrew/Android/Sdk/tools/proguard/proguard-android.txt
|
|
|
|
# You can edit the include path and order by changing the proguardFiles
|
|
|
|
# directive in build.gradle.
|
|
|
|
#
|
|
|
|
# For more details, see
|
|
|
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
|
|
|
|
|
|
|
# Add any project specific keep options here:
|
|
|
|
|
|
|
|
# If your project uses WebView with JS, uncomment the following
|
|
|
|
# and specify the fully qualified class name to the JavaScript interface
|
|
|
|
# class:
|
|
|
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
|
|
|
# public *;
|
|
|
|
#}
|
2017-04-08 08:08:51 +10:00
|
|
|
|
|
|
|
## for okhttp
|
|
|
|
-dontwarn okio.**
|
2017-08-12 03:19:35 +10:00
|
|
|
-dontwarn javax.annotation.Nullable
|
|
|
|
-dontwarn javax.annotation.ParametersAreNonnullByDefault
|
2017-04-08 08:08:51 +10:00
|
|
|
|
|
|
|
## for picasso
|
|
|
|
-dontwarn com.squareup.okhttp.**
|
|
|
|
|
2017-08-12 03:19:35 +10:00
|
|
|
##for keep
|
|
|
|
-dontwarn android.arch.util.paging.CountedDataSource
|
|
|
|
-dontwarn android.arch.persistence.room.paging.LimitOffsetDataSource
|
|
|
|
|
2017-04-08 08:08:51 +10:00
|
|
|
## 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
|
2017-08-12 03:19:35 +10:00
|
|
|
-assumenosideeffects class android.util.Log {
|
|
|
|
public static *** getStackTraceString(...);
|
|
|
|
public static *** d(...);
|
|
|
|
public static *** w(...);
|
|
|
|
public static *** v(...);
|
|
|
|
public static *** i(...);
|
|
|
|
}
|
2018-03-02 05:01:44 +11:00
|
|
|
|
|
|
|
# remove some kotlin overhead
|
|
|
|
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
|
|
|
|
static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
|
|
|
|
}
|