首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

android 搅混代码gson数据nullpointerexception

2012-11-20 
android 混淆代码gson数据nullpointerexception在proguard中添加##---------------Begin: proguard config

android 混淆代码gson数据nullpointerexception

在proguard中添加

##---------------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  ----------

热点排行