# Add project specific ProGuard rules here.
# You can control the set of applied configuration files using the
# proguardFiles setting in build.gradle.
#
# For more details, see
#   http://developer.android.com/guide/developing/tools/proguard.html

# 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 *;
#}

# Uncomment this to preserve the line number information for
# debugging stack traces.
#-keepattributes SourceFile,LineNumberTable

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile

# If you keep the line number information, uncomment this to
# hide the original source file name.
#-renamesourcefileattribute SourceFile
-ignorewarnings

#### Network API JSON
-keep class tw.com.ecpay.paymentgatewaykit.core.api.model.** { *; }

#### Api Exception
-keep class tw.com.ecpay.paymentgatewaykit.core.api.exception.** { *; }

######## Simple
-keep class tw.com.ecpay.paymentgatewaykit.core.api.gateway.req.model.** { *; }
-keep class tw.com.ecpay.paymentgatewaykit.core.api.gateway.req.BaseEncRequest { *; }

-keep class tw.com.ecpay.paymentgatewaykit.core.api.gateway.res.model.** { *; }
-keep class tw.com.ecpay.paymentgatewaykit.core.api.gateway.res.BaseEncResponse { *; }

######## Google Pay
-keep class tw.com.ecpay.paymentgatewaykit.core.api.google.req.model.** { *; }

-keep class tw.com.ecpay.paymentgatewaykit.core.api.google.res.model.** { *; }

-keep class tw.com.ecpay.paymentgatewaykit.core.api.google.GooglePayBuilder { *; }

#### Preferences JSON
-keep class tw.com.ecpay.paymentgatewaykit.core.security.model.AppKeyInfo { *; }
-keep class tw.com.ecpay.paymentgatewaykit.core.security.model.ServerPublicKeyInfo { *; }
-keep class tw.com.ecpay.paymentgatewaykit.core.config.model.ConfigInfo { *; }
-keep class tw.com.ecpay.paymentgatewaykit.core.util.locale.CustomLocale { *; }

#### App Dynamic Conf XML
-keep class tw.com.ecpay.paymentgatewaykit.core.config.dynamic.XMLUrl { *; }

### SDK Utility.Log
-assumenosideeffects class tw.com.ecpay.paymentgatewaykit.core.util.Utility {
	public static *** log(...);
}

### Sdk databinding
-keep class tw.com.ecpay.paymentgatewaykit.databinding.** { *; }
-keep class tw.com.ecpay.paymentgatewaykit.DataBinderMapperImpl { *; }

### Sdk WebView JS
-keep class tw.com.ecpay.paymentgatewaykit.core.util.webview.AndroidtoJs { *; }

### paymentGateway 閘道版 SDK API/常數
-keep public class tw.com.ecpay.paymentgatewaykit.manager.** { *; }
### okhttp
# JSR 305 annotations are for embedding nullability information.
-dontwarn javax.annotation.**

# A resource is loaded with a relative path so the package of this class must be preserved.
-keepnames class okhttp3.internal.publicsuffix.PublicSuffixDatabase

# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
-dontwarn org.codehaus.mojo.animal_sniffer.*

# OkHttp platform used only on JVM and when Conscrypt dependency is available.
-dontwarn okhttp3.internal.platform.ConscryptPlatform
### ----------------------------------------------------------------------------------------------------



### okio
# Animal Sniffer compileOnly dependency to ensure APIs are compatible with older versions of Java.
-dontwarn org.codehaus.mojo.animal_sniffer.*
### ----------------------------------------------------------------------------------------------------



### 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

# 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>
### ----------------------------------------------------------------------------------------------------

### 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

# Prevent R8 from leaving Data object members always null
-keepclassmembers,allowobfuscation class * {
  @com.google.gson.annotations.SerializedName <fields>;
}
### ----------------------------------------------------------------------------------------------------

### android jetpack
# databinding
-keep class androidx.databinding.** { *; }

### ----------------------------------------------------------------------------------------------------

### Samsung Pay SDK
-dontwarn com.samsung.android.sdk.samsungpay.**
-keep class com.samsung.android.sdk.** { *; }
-keep interface com.samsung.android.sdk.** { *; }
### ----------------------------------------------------------------------------------------------------



