2021-01-25 20:41:00 +01:00
|
|
|
# proguard file largely copied from Tusky's
|
|
|
|
# GENERAL OPTIONS (inspired from AOSP's proguard-android-optimize.txt)
|
|
|
|
|
|
|
|
# turn on all optimizations except those that are known to cause problems on Android
|
|
|
|
-optimizations !code/simplification/cast,!field/*,!class/merging/*
|
|
|
|
-optimizationpasses 6
|
|
|
|
-allowaccessmodification
|
2022-06-24 18:11:29 +02:00
|
|
|
|
|
|
|
# Don't obfuscate because it makes traces useless
|
|
|
|
-dontobfuscate
|
2021-01-25 20:41:00 +01:00
|
|
|
|
|
|
|
-dontusemixedcaseclassnames
|
|
|
|
-keepattributes *Annotation*
|
|
|
|
|
|
|
|
# For native methods, see http://proguard.sourceforge.net/manual/examples.html#native
|
|
|
|
-keepclasseswithmembernames class * {
|
|
|
|
native <methods>;
|
|
|
|
}
|
2022-06-24 18:11:29 +02:00
|
|
|
|
|
|
|
# keep ViewModel constructors to make ViewModelFactories work
|
|
|
|
-keepclassmembers public class * extends androidx.lifecycle.ViewModel {
|
|
|
|
public <init>(...);
|
|
|
|
}
|
|
|
|
|
2021-01-25 20:41:00 +01:00
|
|
|
# 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 ** CREATOR;
|
|
|
|
}
|
|
|
|
|
|
|
|
# APP SPECIFIC OPTIONS
|
|
|
|
|
|
|
|
# keep members of our model classes, they are used in json de/serialization
|
2021-04-22 11:47:18 +02:00
|
|
|
-keepclassmembers class org.pixeldroid.app.utils.api.objects.* { *; }
|
2021-01-25 20:41:00 +01:00
|
|
|
|
2021-04-22 11:47:18 +02:00
|
|
|
-keep public enum org.pixeldroid.app.utils.api.objects.*$** {
|
2021-01-25 20:41:00 +01:00
|
|
|
**[] $VALUES;
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
|
2022-02-28 11:42:04 +01:00
|
|
|
-keepclassmembers class org.pixeldroid.app.settings.licenseObjects.* { *; }
|
|
|
|
|
|
|
|
-keep public enum org.pixeldroid.app.settings.licenseObjects.*$** {
|
|
|
|
**[] $VALUES;
|
|
|
|
public *;
|
|
|
|
}
|
|
|
|
|
2021-01-25 20:41:00 +01:00
|
|
|
# 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(...);
|
2022-08-21 00:27:35 +02:00
|
|
|
public static *** e(...);
|
|
|
|
public static *** println(...);
|
2021-01-25 20:41:00 +01:00
|
|
|
public static *** w(...);
|
|
|
|
public static *** v(...);
|
|
|
|
public static *** i(...);
|
|
|
|
}
|
|
|
|
-assumenosideeffects class java.lang.String {
|
|
|
|
public static java.lang.String format(...);
|
|
|
|
}
|
|
|
|
|
|
|
|
# remove some kotlin overhead
|
|
|
|
-assumenosideeffects class kotlin.jvm.internal.Intrinsics {
|
2022-06-24 18:11:29 +02:00
|
|
|
static void checkNotNull(java.lang.Object);
|
|
|
|
static void checkNotNull(java.lang.Object, java.lang.String);
|
|
|
|
static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
|
2021-01-25 20:41:00 +01:00
|
|
|
static void checkParameterIsNotNull(java.lang.Object, java.lang.String);
|
2022-06-24 18:11:29 +02:00
|
|
|
static void checkNotNullParameter(java.lang.Object, java.lang.String);
|
2021-01-25 20:41:00 +01:00
|
|
|
static void checkExpressionValueIsNotNull(java.lang.Object, java.lang.String);
|
2022-06-24 18:11:29 +02:00
|
|
|
static void checkNotNullExpressionValue(java.lang.Object, java.lang.String);
|
|
|
|
static void checkReturnedValueIsNotNull(java.lang.Object, java.lang.String);
|
|
|
|
static void checkReturnedValueIsNotNull(java.lang.Object, java.lang.String, java.lang.String);
|
2021-01-25 20:41:00 +01:00
|
|
|
static void throwUninitializedPropertyAccessException(java.lang.String);
|
2022-07-01 17:37:11 +02:00
|
|
|
}
|
|
|
|
|
2022-07-29 10:32:15 +02:00
|
|
|
-keep public class * extends com.bumptech.glide.module.AppGlideModule
|
|
|
|
-keep class com.bumptech.glide.GeneratedAppGlideModuleImpl
|
|
|
|
|
2022-11-03 14:29:36 +01:00
|
|
|
-dontwarn org.bouncycastle.**
|
|
|
|
-dontwarn org.conscrypt.**
|
|
|
|
-dontwarn org.openjsse.javax.net.ssl.**
|
|
|
|
-dontwarn org.openjsse.net.ssl.**
|
|
|
|
|
|
|
|
-dontwarn org.checkerframework.checker.nullness.qual.EnsuresNonNull
|
|
|
|
-dontwarn org.checkerframework.checker.nullness.qual.RequiresNonNull
|
|
|
|
|
2022-07-01 17:37:11 +02:00
|
|
|
##---------------Begin: proguard configuration for Gson ----------
|
|
|
|
# Gson uses generic type information stored in a class file when working with fields. Proguard
|
|
|
|
# removes such information by default, so configure it to keep all of it.
|
|
|
|
-keepattributes Signature
|
|
|
|
|
|
|
|
# For using GSON @Expose annotation
|
|
|
|
-keepattributes *Annotation*
|
|
|
|
|
|
|
|
# Gson specific classes
|
|
|
|
-dontwarn sun.misc.**
|
|
|
|
#-keep class com.google.gson.stream.** { *; }
|
|
|
|
|
|
|
|
# Application classes that will be serialized/deserialized over Gson
|
|
|
|
-keep class com.google.gson.examples.android.model.** { <fields>; }
|
|
|
|
|
|
|
|
# Prevent proguard from stripping interface information from TypeAdapter, TypeAdapterFactory,
|
|
|
|
# JsonSerializer, JsonDeserializer instances (so they can be used in @JsonAdapter)
|
|
|
|
-keep class * extends com.google.gson.TypeAdapter
|
|
|
|
-keep class * implements com.google.gson.TypeAdapterFactory
|
|
|
|
-keep class * implements com.google.gson.JsonSerializer
|
|
|
|
-keep class * implements com.google.gson.JsonDeserializer
|
|
|
|
|
2022-07-25 16:43:32 +02:00
|
|
|
-keep class com.google.gson.internal.LinkedTreeMap { *; }
|
|
|
|
|
2022-07-01 17:37:11 +02:00
|
|
|
# Prevent R8 from leaving Data object members always null
|
|
|
|
-keepclassmembers,allowobfuscation class * {
|
|
|
|
@com.google.gson.annotations.SerializedName <fields>;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Retain generic signatures of TypeToken and its subclasses with R8 version 3.0 and higher.
|
|
|
|
-keep,allowobfuscation,allowshrinking class com.google.gson.reflect.TypeToken
|
|
|
|
-keep,allowobfuscation,allowshrinking class * extends com.google.gson.reflect.TypeToken
|
|
|
|
|
2022-11-03 18:31:07 +01:00
|
|
|
##---------------End: proguard configuration for Gson ----------
|
|
|
|
|
|
|
|
##---------------Begin: proguard configuration for Retrofit ----------
|
|
|
|
# Retrofit does reflection on generic parameters. InnerClasses is required to use Signature and
|
|
|
|
# EnclosingMethod is required to use InnerClasses.
|
|
|
|
-keepattributes Signature, InnerClasses, EnclosingMethod
|
|
|
|
|
|
|
|
# Retrofit does reflection on method and parameter annotations.
|
|
|
|
-keepattributes RuntimeVisibleAnnotations, RuntimeVisibleParameterAnnotations
|
|
|
|
|
|
|
|
# Keep annotation default values (e.g., retrofit2.http.Field.encoded).
|
|
|
|
-keepattributes AnnotationDefault
|
|
|
|
|
|
|
|
# Retain service method parameters when optimizing.
|
|
|
|
-keepclassmembers,allowshrinking,allowobfuscation interface * {
|
|
|
|
@retrofit2.http.* <methods>;
|
|
|
|
}
|
|
|
|
|
|
|
|
# Ignore annotation used for build tooling.
|
|
|
|
-dontwarn org.codehaus.mojo.animal_sniffer.IgnoreJRERequirement
|
|
|
|
|
|
|
|
# Ignore JSR 305 annotations for embedding nullability information.
|
|
|
|
-dontwarn javax.annotation.**
|
|
|
|
|
|
|
|
# Guarded by a NoClassDefFoundError try/catch and only used when on the classpath.
|
|
|
|
-dontwarn kotlin.Unit
|
|
|
|
|
|
|
|
# Top-level functions that can only be used by Kotlin.
|
|
|
|
-dontwarn retrofit2.KotlinExtensions
|
|
|
|
-dontwarn retrofit2.KotlinExtensions$*
|
|
|
|
|
|
|
|
# With R8 full mode, it sees no subtypes of Retrofit interfaces since they are created with a Proxy
|
|
|
|
# and replaces all potential values with null. Explicitly keeping the interfaces prevents this.
|
|
|
|
-if interface * { @retrofit2.http.* <methods>; }
|
|
|
|
-keep,allowobfuscation interface <1>
|
|
|
|
|
2022-11-30 09:55:15 +01:00
|
|
|
# Keep inherited services.
|
|
|
|
-if interface * { @retrofit2.http.* <methods>; }
|
|
|
|
-keep,allowobfuscation interface * extends <1>
|
|
|
|
|
2022-11-03 18:31:07 +01:00
|
|
|
# Keep generic signature of Call, Response (R8 full mode strips signatures from non-kept items).
|
|
|
|
-keep,allowobfuscation,allowshrinking interface retrofit2.Call
|
|
|
|
-keep,allowobfuscation,allowshrinking class retrofit2.Response
|
|
|
|
|
|
|
|
# With R8 full mode generic signatures are stripped for classes that are not
|
|
|
|
# kept. Suspend functions are wrapped in continuations where the type argument
|
|
|
|
# is used.
|
|
|
|
-keep,allowobfuscation,allowshrinking class kotlin.coroutines.Continuation
|
2022-11-30 09:55:15 +01:00
|
|
|
##---------------End: proguard configuration for Retrofit ----------
|
|
|
|
|
|
|
|
-keep,allowobfuscation,allowshrinking class io.reactivex.rxjava3.core.Observable
|