############
# 3DS SDK:
############
-keep class com.ravelin.threeDS2Service.instantiation.ThreeDS2ServiceInstance {
*;
}
-keep public class com.ravelin.threeDS2Service.ThreeDS2Service{
public *;
}
-keep public class com.ravelin.core.customization.** { public *; }
-keep public class com.ravelin.core.deviceinfo.DeviceInfoProvider* { public *; }
-keep public class com.ravelin.core.deviceinfo.WarningMessage* { public *; }
-keep public class com.ravelin.core.transaction.challenge.ChallengeParameters* { public *; }
-keep public class com.ravelin.core.transaction.events.CompletionEvent* { public *; }
-keep public class com.ravelin.core.transaction.AuthenticationRequestParameters* { public *; }
-keep public class com.ravelin.core.transaction.TransactionImpl* { public *; }
-keep public class com.ravelin.core.transaction.TransactionsManager* { public *; }
-keep public class com.ravelin.core.transaction.TransactionsManagerApi* { public *; }
-keep public class com.ravelin.core.configparameters.** { public *; }
-keep public class com.ravelin.sharedtemp.model.schemes.** { public *; }
-keep @kotlinx.parcelize.Parcelize class com.ravelin.core.initialization.model.** { *; }
-keep public class com.ul.emvco3ds.sdk.spec.** { *; }
# R$ files and Enums
-keepclassmembers enum com.ravelin.** { *; }
-keepclassmembers enum com.ul.emvco3ds.sdk.spec.** { *; }
-keepclassmembers class com.ravelin.**.R$* {
public static <fields>;
}
-keepclassmembers class com.ul.emvco3ds.sdk.spec.**.R$* {
public static <fields>;
}
#######################################################
# Parcelables: Maintain the parcelables.
# They are required for a library that uses @Parcelize
#######################################################
-keep class * implements android.os.Parcelable {
public static final android.os.Parcelable$Creator *;
}
-keepclassmembers class * implements android.os.Parcelable {
static ** CREATOR;
}
###############
# Bouncycastle:
###############
-keep class org.bouncycastle.jcajce.provider.** { *; }
-keep class org.bouncycastle.jce.provider.** { *; }
-dontwarn javax.naming.**
#############
## Protobuf:
#############
-keep class * extends com.google.protobuf.GeneratedMessageLite { *; }
#############
# 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.**
# 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
# 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
#############
# 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>
# Keep inherited services.
-if interface * { @retrofit2.http.* <methods>; }
-keep,allowobfuscation interface * extends <1>
# 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
# R8 full mode strips generic signatures from return types if not kept.
-if interface * { @retrofit2.http.* public *** *(...); }
-keep,allowoptimization,allowshrinking,allowobfuscation class <3>
# With R8 full mode generic signatures are stripped for classes that are not kept.
-keep,allowobfuscation,allowshrinking class retrofit2.Response
Was this page helpful?