如何配置,让ProGuard不混淆某个目录下的所有类?还有inner类的问题。
如A类中有某公用静态类B,
ProGuard处理后(即使keepA类)后,classpath中就找不到B类了?

解决方案 »

  1.   

    ProGuard什么东西啊?不知道,顶下
      

  2.   

    让ProGuard不混淆某个目录下的所有类?
    -------------------------------------好像你在使用proguardgui.jar,你混淆的jar包啊jar包 你在打包的时候可以不选择你不需要混淆的类还有就是你在proguardgui.jar的图形界面的obfuscation中 你可以设置的。。
    具体的你看看你可以到里面去仔细的研究研究!!
      

  3.   

    依照ProGuard的帮助文档,写个混淆配置文件,来说明那些类不需用被混淆
      

  4.   

    Ant task 中的
    <keepdirectory name = "directory_name" />
    <keepdirectories filter = "directory_filter" />
    Keep the specified directories in the output jars (or wars, ears, zips, or directories).