fix(core): add proguard rule to keep JSON deserializers (#10800)

This commit is contained in:
Lucas Fernandes Nogueira 2024-08-27 15:30:10 -03:00 committed by GitHub
parent c85bb0fb61
commit 22d2afa89b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 7 additions and 0 deletions

View File

@ -0,0 +1,5 @@
---
"tauri": patch:bug
---
Change the Android Proguard rules to keep custom JSON deserializers.

View File

@ -27,3 +27,5 @@
-keep @app.tauri.annotation.InvokeArg public class * {
*;
}
-keep class * extends com.fasterxml.jackson.databind.JsonDeserializer { *; }