How to keep javadoc visible after obfuscating the code using ProGuard?

拈花ヽ惹草 提交于 2019-12-10 21:52:27

问题


I obfuscating my code using progured 4.7, and im keeping class A that have javadoc describing what the class do.

-keep public class com.mysite.ClassA {public *;}
-keepattributes InnerClasses
-keepparameternames

In eclipse when i try to view the docs for this class, eclipse tells me that there's no attached java doc. is there a way to solve this?

来源:https://stackoverflow.com/questions/9269205/how-to-keep-javadoc-visible-after-obfuscating-the-code-using-proguard

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!