You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jianglk.darker
7ee447c011
|
4 months ago | |
---|---|---|
.. | ||
maven | 4 months ago | |
README | 4 months ago | |
build.properties | 4 months ago | |
build.sh | 4 months ago | |
build.xml | 4 months ago | |
makefile | 4 months ago |
README
ProGuard, Java class file shrinker, optimizer, obfuscator, and preverifier ========================================================================== This directory contains a number of alternative ways to build ProGuard: - build.sh : a shell script for GNU/Linux - makefile : a makefile for GNU/Linux - build.xml : an Ant build file for all platforms - maven/pom.xml : a Maven POM for building the Maven artifacts - As a final alternative, you can also easily compile the code from the command line: mkdir classes javac -sourcepath src -d classes src/proguard/ProGuard.java javac -sourcepath src -d classes src/proguard/gui/ProGuardGUI.java javac -sourcepath src -d classes src/proguard/retrace/ReTrace.java For the ProGuard Ant task: javac -sourcepath src -d classes -classpath lib/ant.jar \ src/proguard/ant/ProGuardTask.java For the ProGuard Gradle task: javac -sourcepath src -d classes -classpath ..... \ src/proguard/gradle/ProGuardTask.java For the Java Micro Edition Wireless Tool Kit (JME WTK) obfuscator plug-in: javac -sourcepath src -d classes -classpath wtklib/kenv.zip \ src/proguard/wtk/ProGuardObfuscator.java Note that you'll have to install Ant and the JME WTK yourself. Enjoy! http://proguard.sourceforge.net/ Copyright (c) 2002-2014 Eric Lafortune (eric@graphics.cornell.edu)