原文:http://stackoverflow.com/questions/8129040/proguard-missing-type-parameter
##---------------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
# Gson specific classes
-keep class sun.misc.Unsafe { *; }
#-keep class com.google.gson.stream.** { *; }
# Application classes that will be serialized/deserialized over Gson
-keep class com.google.gson.examples.android.model.** { *; }
##---------------End: proguard configuration for Gson ----------
本文详细介绍了如何为Gson配置ProGuard以保持类型参数信息,包括Gson相关类的保留策略,以及如何配置应用类进行序列化/反序列化。
650

被折叠的 条评论
为什么被折叠?



