Skip to content

Commit

Permalink
added proguard rules
Browse files Browse the repository at this point in the history
  • Loading branch information
aslm-android committed Jan 25, 2024
1 parent 3eab7f0 commit 75baf82
Show file tree
Hide file tree
Showing 2 changed files with 38 additions and 1 deletion.
38 changes: 38 additions & 0 deletions knet-sdk/consumer-rules.pro
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
-keepclassmembers class * {
static java.lang.String *;
}

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

##---------------End: proguard configuration for Gson ----------

-keepclassmembers class * {
@android.webkit.JavascriptInterface <methods>;
}

-keep class company.tap.tapWebForm.** { *; }
Original file line number Diff line number Diff line change
Expand Up @@ -429,7 +429,6 @@ class TapKnetPay : LinearLayout {


override fun onDetachedFromWindow() {
Log.e("detached","here")
knetWebView.destroy()
super.onDetachedFromWindow()
}
Expand Down

0 comments on commit 75baf82

Please sign in to comment.