博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
GSON混淆后执行错误
阅读量:6608 次
发布时间:2019-06-24

本文共 770 字,大约阅读时间需要 2 分钟。

hot3.png

You need to add these lines to your proguard so that gson class is kept while signing your app.

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

# For using GSON @Expose annotation  

-keepattributes *Annotation*  

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

转载于:https://my.oschina.net/u/188924/blog/418847

你可能感兴趣的文章
dell r620装cenots7遇到的问题
查看>>
Ansible之playbook的使用
查看>>
ansible模块批量管理
查看>>
redis命令 - GET
查看>>
httpd.conf的基本设置
查看>>
RHEL/Centos7新功能
查看>>
第一部分 思科九年 一(1)
查看>>
DBA日常工作职责
查看>>
Redis的持久化
查看>>
linux安装NFS服务器学习
查看>>
Planner .NET日历日程控件能给你的应用程序提供多种日历日程功能
查看>>
我的友情链接
查看>>
Linux压力测试
查看>>
JAVA中的线程机制(二)
查看>>
nginx安装与配置2(转载)
查看>>
Linux下Mongodb安装和启动配置
查看>>
2015 成长计划
查看>>
沈阳一饭店凌晨爆燃,燃气报警器时刻预防
查看>>
Redis 与 数据库处理数据的两种模式
查看>>
VUE2中axios的使用方法
查看>>