我已经包含以下行以将所有文件保存在包中。

        -keep class com.fasterxml.** { *; }

我收到以下异常。
        Caused by: java.lang.IllegalArgumentException: Internal error:             TypeReference constructed without actual type information
        at com.fasterxml.jackson.core.type.TypeReference.<init>(SourceFile:36)

最佳答案

我找到了解决方案。将以下 find 添加到 ProGuard 规则或配置文件中解决了该问题。

            -keepattributes Signature

PS:如果你觉得这有帮助,请投票

10-08 03:16