Gson混淆报错的根本原因是反射机制被ProGuard或R8误删,解决方案是在proguard-rules.pro中配置-keepclasscom.google.gson.**{*;}并配合@SerializedName注解使用,...