How to keep javadoc visible after obfuscating
问题 I built a nice Javadoc documentation for my project which is a JAR file for developers. But after I run proguard in order to obfuscat my code all the Javadoc documentation are gone. I would like to keep javadoc on all my public methods in the jar. Does anyone know how keep Javadoc visible after obfuscating? Thanks! 回答1: Javadoc is extracted from source files . It is not possible to create javadoc from class files , neither clean nor obfuscated. ProGuard operates on the class files created