Skip to content

Commit 22d2afa

Browse files
authored
fix(core): add proguard rule to keep JSON deserializers (#10800)
1 parent c85bb0f commit 22d2afa

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri": patch:bug
3+
---
4+
5+
Change the Android Proguard rules to keep custom JSON deserializers.

core/tauri/mobile/android/proguard-rules.pro

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,3 +27,5 @@
2727
-keep @app.tauri.annotation.InvokeArg public class * {
2828
*;
2929
}
30+
31+
-keep class * extends com.fasterxml.jackson.databind.JsonDeserializer { *; }

0 commit comments

Comments
 (0)