# 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

# Package Name
-keeppackagenames tw.com.ecpay.paymentgatewaykit.**

#### 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.util.locale.CustomLocale { *; }

#### App Conf Model
-keep class tw.com.ecpay.paymentgatewaykit.core.config.model.ConfigInfo { *; }
-keep class tw.com.ecpay.paymentgatewaykit.core.config.model.WebViewInsideUrl { *; }

#### 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.log.LogUtil {
	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.webview.javascript.AndroidtoJs { *; }

### PaymentGatewayKit Sdk
-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.*
### ----------------------------------------------------------------------------------------------------



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

-dontwarn retrofit2.**
### ----------------------------------------------------------------------------------------------------

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