/external/proguard/src/proguard/ant/ |
task.properties | 0 proguard = proguard.ant.ProGuardTask
2 proguardconfiguration = proguard.ant.ConfigurationTask
|
package.html | 2 This package contains the Ant task for ProGuard.
|
/external/proguard/src/proguard/ |
MANIFEST.MF | 2 Main-Class: proguard.ProGuard
|
package.html | 2 This package contains the main ProGuard application. 3 ProGuard can read jar files, shrink and obfuscate them, and write out the
|
/external/proguard/docs/manual/retrace/ |
examples.html | 23 Assume for instance ProGuard itself has been obfuscated using the following 26 -printmapping proguard.map 28 -renamesourcefileattribute ProGuard 34 stack trace in <code>proguard.trace</code>, shown below. Of course, in real 35 life ProGuard rarely throws exceptions, so this is a purposely generated 40 at pro.bY.a(ProGuard:576) 41 at pro.bO.a(ProGuard:431) 42 at pro.bj.a(ProGuard:145) 43 at pro.bY.a(ProGuard:522) 44 at pro.bj.a(ProGuard:129 [all...] |
/external/proguard/src/proguard/gui/ |
MANIFEST.MF | 2 Main-Class: proguard.gui.ProGuardGUI 3 Class-Path: proguard.jar retrace.jar
|
package.html | 2 This package contains a GUI for ProGuard and ReTrace.
|
/external/proguard/src/proguard/retrace/ |
MANIFEST.MF | 2 Main-Class: proguard.retrace.ReTrace 3 Class-Path: proguard.jar
|
/external/proguard/lib/ |
proguard.jar | |
proguardgui.jar | |
retrace.jar | |
/external/proguard/src/proguard/wtk/ |
package.html | 2 This package contains the J2ME Wireless Toolkit plug-in for ProGuard.
|
/external/proguard/examples/ant/ |
applications1.xml | 2 by including a ProGuard-style configuration file. 8 <taskdef resource="proguard/ant/task.properties" 9 classpath="lib/proguard.jar" /> 11 <proguard configuration="examples/applications.pro" />
|
proguard.xml | 1 <!-- This Ant build file illustrates how to process ProGuard (including its 4 Usage: ant -f proguard.xml --> 6 <project name="ProGuard" default="obfuscate" basedir="../.."> 9 <taskdef resource="proguard/ant/task.properties" 10 classpath="lib/proguard.jar" /> 12 <proguard skipnonpubliclibraryclasses="off" 13 printmapping="proguard.map" 19 <injar file="lib/proguard.jar" /> 33 <adaptresourcefilecontents filter="proguard/ant/task.properties" /> 35 <!-- The main seeds: ProGuard and its companion tool ReTrace. -- [all...] |
/external/proguard/build/ |
build.xml | 1 <!-- Ant build script for ProGuard. --> 3 <project name = "proguard" 16 <target name = "basic" depends = "proguard,proguardgui,retrace"/> 19 <target name = "proguard" depends = "classes,lib"> 24 includes = "proguard/ProGuard.java"> 30 <include name = "proguard/*.properties"/> 31 <include name = "proguard/*.png"/> 32 <include name = "proguard/*.gif"/> 33 <include name = "proguard/*.pro"/ [all...] |
build.sh | 3 # GNU/Linux build script for ProGuard. 23 PROGUARD=proguard/ProGuard 24 PROGUARD_GUI=proguard/gui/ProGuardGUI 25 RETRACE=proguard/retrace/ReTrace 26 ANT_TASK=proguard/ant/ProGuardTask 27 WTK_PLUGIN=proguard/wtk/ProGuardObfuscator 32 PROGUARD_JAR=$LIB/proguard.jar 69 compile $PROGUARD [all...] |
/external/proguard/examples/ |
proguard.pro | 2 # This ProGuard configuration file illustrates how to process ProGuard itself. 5 # java -jar proguard.jar @proguard.pro 11 -injars ../lib/proguard.jar(!proguard/ant/**,!proguard/wtk/**) 19 -printmapping proguard.map 34 # The entry point: ProGuard and its main method. 36 -keep public class proguard.ProGuard [all...] |
proguardall.pro | 2 # This ProGuard configuration file illustrates how to process ProGuard 7 # java -jar proguard.jar @proguardall.pro 35 -adaptresourcefilecontents proguard/ant/task.properties 39 -keep public class proguard.ProGuard { 43 -keep public class proguard.gui.ProGuardGUI { 47 -keep public class proguard.retrace.ReTrace { 53 -keep,allowobfuscation class proguard.ant.* 54 -keepclassmembers public class proguard.ant.* [all...] |
proguardgui.pro | 2 # This ProGuard configuration file illustrates how to process the ProGuard GUI. 5 # java -jar proguard.jar @proguardgui.pro 13 -injars ../lib/proguard.jar(!META-INF/**,!proguard/ant/**,!proguard/wtk/**) 28 #-applymapping proguard.map 31 #-libraryjars ../lib/proguard.jar(!proguard/ant/**,!proguard/wtk/** [all...] |
retrace.pro | 2 # This ProGuard configuration file illustrates how to process the ReTrace tool. 5 # java -jar proguard.jar @retrace.pro 13 -injars ../lib/proguard.jar(!META-INF/MANIFEST.MF, 14 !proguard/ant/**,!proguard/wtk/**) 23 #-applymapping proguard.map 24 #-outjars retrace_out.jar(proguard/retrace/**) 41 -keep public class proguard.retrace.ReTrace {
|
/external/proguard/examples/annotations/lib/ |
annotations.jar | |
/external/proguard/bin/ |
proguard.bat | 3 REM Start-up script for ProGuard -- free class file shrinker, optimizer, 10 java -jar "%PROGUARD_HOME%"\lib\proguard.jar %*
|
proguard.sh | 3 # Start-up script for ProGuard -- free class file shrinker, optimizer, 9 java -jar "$PROGUARD_HOME"/lib/proguard.jar "$@"
|
/external/proguard/src/proguard/classfile/constant/visitor/ |
ExceptClassConstantFilter.java | 2 * ProGuard -- shrinking, optimization, obfuscation, and preverification 21 package proguard.classfile.constant.visitor; 23 import proguard.classfile.*; 24 import proguard.classfile.editor.*; 25 import proguard.classfile.attribute.*; 26 import proguard.classfile.attribute.annotation.*; 27 import proguard.classfile.attribute.preverification.*; 28 import proguard.classfile.constant.ClassConstant; 29 import proguard.classfile.constant.visitor.ConstantVisitor; 30 import proguard.classfile.util.SimplifiedVisitor [all...] |
/external/proguard/docs/manual/ |
wtk.html | 7 <title>ProGuard JME Wireless Toolkit Integration</title> 13 <b>ProGuard</b> can be seamlessly integrated in Sun's Wireless Toolkit (WTK) 17 The WTK already comes with a plug-in for ProGuard. Alternatively, ProGuard 20 invoking the ProGuard engine directly, instead of writing out a configuration 21 file and running ProGuard in a separate virtual machine. 32 obfuscator.runner.class.name: proguard.wtk.ProGuardObfuscator 33 obfuscator.runner.classpath: /usr/local/java/proguard/lib/proguard.jar 40 Once ProGuard has been set up, you can apply it to your projects as part o [all...] |