greenDAO混淆配置
分类:Android, Java
阅读 (4,057)
Add comments
1月 092017
如果你的项目中使用了greenDAO并且使用了混淆,那么请为greenDAO增加混淆配置,如下:
1 2 3 4 5 6 7 8 9 10 11 12 13 |
#******************************** #For greenDAO BEGIN************** #******************************** -keepclassmembers class * extends org.greenrobot.greendao.AbstractDao { public static java.lang.String TABLENAME; } -keep class **$Properties # If you do not use SQLCipher: -dontwarn org.greenrobot.greendao.database.** # If you do not use Rx: -dontwarn rx.** #For Eventbug END************** |
官方原文地址:http://greenrobot.org/greendao/documentation/updating-to-greendao-3-and-annotations/#Step_1_Update_dependencies_to_V3