That is funny but my project configuration does everything to generate executable jar except adding my project classes to final jar:
I use Maven and the maven-war-plugin to to build my WAR. All JSPs are pre-compiled using the jspc-maven-plugin and all classes are put into a JAR (WEB-INF/lib). So far everything works fine. Now I try
I have just used proguard, but classes I am trying to instantiate via reflection are not working. I have an interface
When I export android project with proguard.cfg, all refer开发者_如何学Pythonenced .jar files are obfuscated as well. How can I exclude some of that .jars from obfuscation?If you don\'t want to edit t
When using Proguard with Android, methods that are only开发者_运维知识库 invoked via reflection (e.g., callbacks defined in onClick XML attributes) are erroneously stripped out.
I made the mistake of upgrading eclipse today and now can\'t get my a new Android project to get going.
I have taken a fresh install of Eclipse and all the latest Android tools and want to use Proguard on existing project, but for now I have created a new blank one.
one of the features in android 2.3 is integrated proguard obfuscation when doing rele开发者_Go百科ase builds. but how do i enable this obfuscation when creating my apk?
I have about 5 packages in my project, is it possible to merge all the packages into one large package, I want to do this to make hacking more difficult.
I just used the new ProGuard tool in eclipse to obfuscation my application.The I decompiled it using dex2Jar and JD-GUI to inspect what happened.