sometsome 1.0.2 → 3.10.42
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/proguard4.7/README +33 -0
- data/lib/proguard4.7/bin/proguard.bat +14 -0
- data/lib/proguard4.7/bin/proguard.sh +11 -0
- data/lib/proguard4.7/bin/proguardgui.bat +14 -0
- data/lib/proguard4.7/bin/proguardgui.sh +15 -0
- data/lib/proguard4.7/bin/retrace.bat +14 -0
- data/lib/proguard4.7/bin/retrace.sh +12 -0
- data/lib/proguard4.7/build/build.sh +94 -0
- data/lib/proguard4.7/build/build.xml +171 -0
- data/lib/proguard4.7/build/makefile +94 -0
- data/lib/proguard4.7/docs/FAQ.html +253 -0
- data/lib/proguard4.7/docs/GPL.html +406 -0
- data/lib/proguard4.7/docs/GPL_exception.html +56 -0
- data/lib/proguard4.7/docs/acknowledgements.html +76 -0
- data/lib/proguard4.7/docs/alternatives.html +699 -0
- data/lib/proguard4.7/docs/checkmark.gif +0 -0
- data/lib/proguard4.7/docs/downloads.html +623 -0
- data/lib/proguard4.7/docs/drop1.gif +0 -0
- data/lib/proguard4.7/docs/drop2.gif +0 -0
- data/lib/proguard4.7/docs/drop3.gif +0 -0
- data/lib/proguard4.7/docs/favicon.ico +0 -0
- data/lib/proguard4.7/docs/feedback.html +120 -0
- data/lib/proguard4.7/docs/index.html +92 -0
- data/lib/proguard4.7/docs/license.html +60 -0
- data/lib/proguard4.7/docs/main.html +102 -0
- data/lib/proguard4.7/docs/manual/ant.html +634 -0
- data/lib/proguard4.7/docs/manual/attention.gif +0 -0
- data/lib/proguard4.7/docs/manual/examples.html +1504 -0
- data/lib/proguard4.7/docs/manual/gui.html +479 -0
- data/lib/proguard4.7/docs/manual/index.html +51 -0
- data/lib/proguard4.7/docs/manual/introduction.html +173 -0
- data/lib/proguard4.7/docs/manual/limitations.html +69 -0
- data/lib/proguard4.7/docs/manual/optimizations.html +172 -0
- data/lib/proguard4.7/docs/manual/refcard.html +486 -0
- data/lib/proguard4.7/docs/manual/retrace/examples.html +345 -0
- data/lib/proguard4.7/docs/manual/retrace/index.html +37 -0
- data/lib/proguard4.7/docs/manual/retrace/introduction.html +79 -0
- data/lib/proguard4.7/docs/manual/retrace/usage.html +127 -0
- data/lib/proguard4.7/docs/manual/sections.html +60 -0
- data/lib/proguard4.7/docs/manual/style.css +105 -0
- data/lib/proguard4.7/docs/manual/troubleshooting.html +729 -0
- data/lib/proguard4.7/docs/manual/usage.html +1243 -0
- data/lib/proguard4.7/docs/manual/wtk.html +70 -0
- data/lib/proguard4.7/docs/quality.html +56 -0
- data/lib/proguard4.7/docs/results.html +170 -0
- data/lib/proguard4.7/docs/saikoalogo.png +0 -0
- data/lib/proguard4.7/docs/screenshot_console.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_console_small.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui1.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui2.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui3.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui4.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui5.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui6.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui7.gif +0 -0
- data/lib/proguard4.7/docs/screenshot_gui8.gif +0 -0
- data/lib/proguard4.7/docs/screenshots.html +67 -0
- data/lib/proguard4.7/docs/screenshots_gui_small.gif +0 -0
- data/lib/proguard4.7/docs/sections.html +64 -0
- data/lib/proguard4.7/docs/sflogo.png +0 -0
- data/lib/proguard4.7/docs/steel.gif +0 -0
- data/lib/proguard4.7/docs/style.css +223 -0
- data/lib/proguard4.7/docs/testimonials.html +133 -0
- data/lib/proguard4.7/docs/title.gif +0 -0
- data/lib/proguard4.7/docs/title.html +17 -0
- data/lib/proguard4.7/examples/android.pro +149 -0
- data/lib/proguard4.7/examples/annotations/examples.pro +60 -0
- data/lib/proguard4.7/examples/annotations/examples/Applet.java +22 -0
- data/lib/proguard4.7/examples/annotations/examples/Application.java +20 -0
- data/lib/proguard4.7/examples/annotations/examples/Bean.java +56 -0
- data/lib/proguard4.7/examples/annotations/examples/NativeCallBack.java +44 -0
- data/lib/proguard4.7/examples/annotations/lib/annotations.jar +0 -0
- data/lib/proguard4.7/examples/annotations/lib/annotations.pro +118 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/Keep.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepApplication.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepClassMemberNames.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepClassMembers.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepGettersSetters.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepImplementations.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepName.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicClassMemberNames.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicClassMembers.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicGettersSetters.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicImplementations.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMemberNames.java +18 -0
- data/lib/proguard4.7/examples/annotations/src/proguard/annotation/KeepPublicProtectedClassMembers.java +19 -0
- data/lib/proguard4.7/examples/ant/android-8.xml +177 -0
- data/lib/proguard4.7/examples/ant/applets.xml +88 -0
- data/lib/proguard4.7/examples/ant/applications1.xml +15 -0
- data/lib/proguard4.7/examples/ant/applications2.xml +74 -0
- data/lib/proguard4.7/examples/ant/applications3.xml +98 -0
- data/lib/proguard4.7/examples/ant/library.xml +102 -0
- data/lib/proguard4.7/examples/ant/midlets.xml +52 -0
- data/lib/proguard4.7/examples/ant/proguard.xml +78 -0
- data/lib/proguard4.7/examples/ant/servlets.xml +88 -0
- data/lib/proguard4.7/examples/applets.pro +69 -0
- data/lib/proguard4.7/examples/applications.pro +75 -0
- data/lib/proguard4.7/examples/dictionaries/compact.txt +18 -0
- data/lib/proguard4.7/examples/dictionaries/keywords.txt +58 -0
- data/lib/proguard4.7/examples/dictionaries/shakespeare.txt +23 -0
- data/lib/proguard4.7/examples/dictionaries/windows.txt +209 -0
- data/lib/proguard4.7/examples/library.pro +79 -0
- data/lib/proguard4.7/examples/midlets.pro +67 -0
- data/lib/proguard4.7/examples/proguard.pro +57 -0
- data/lib/proguard4.7/examples/proguardall.pro +62 -0
- data/lib/proguard4.7/examples/proguardgui.pro +50 -0
- data/lib/proguard4.7/examples/retrace.pro +43 -0
- data/lib/proguard4.7/examples/scala.pro +132 -0
- data/lib/proguard4.7/examples/servlets.pro +70 -0
- data/lib/proguard4.7/lib/proguard.jar +0 -0
- data/lib/proguard4.7/lib/proguardgui.jar +0 -0
- data/lib/proguard4.7/lib/retrace.jar +0 -0
- data/lib/proguard4.7/src/proguard/ArgumentWordReader.java +111 -0
- data/lib/proguard4.7/src/proguard/ClassPath.java +94 -0
- data/lib/proguard4.7/src/proguard/ClassPathEntry.java +282 -0
- data/lib/proguard4.7/src/proguard/ClassSpecification.java +259 -0
- data/lib/proguard4.7/src/proguard/ClassSpecificationVisitorFactory.java +503 -0
- data/lib/proguard4.7/src/proguard/Configuration.java +328 -0
- data/lib/proguard4.7/src/proguard/ConfigurationConstants.java +123 -0
- data/lib/proguard4.7/src/proguard/ConfigurationParser.java +1285 -0
- data/lib/proguard4.7/src/proguard/ConfigurationWriter.java +651 -0
- data/lib/proguard4.7/src/proguard/DataEntryReaderFactory.java +141 -0
- data/lib/proguard4.7/src/proguard/DataEntryWriterFactory.java +150 -0
- data/lib/proguard4.7/src/proguard/DescriptorKeepChecker.java +169 -0
- data/lib/proguard4.7/src/proguard/DuplicateClassPrinter.java +63 -0
- data/lib/proguard4.7/src/proguard/FileWordReader.java +55 -0
- data/lib/proguard4.7/src/proguard/FullyQualifiedClassNameChecker.java +191 -0
- data/lib/proguard4.7/src/proguard/GPL.java +197 -0
- data/lib/proguard4.7/src/proguard/Initializer.java +424 -0
- data/lib/proguard4.7/src/proguard/InputReader.java +233 -0
- data/lib/proguard4.7/src/proguard/KeepClassMemberChecker.java +87 -0
- data/lib/proguard4.7/src/proguard/KeepClassSpecification.java +137 -0
- data/lib/proguard4.7/src/proguard/LineWordReader.java +74 -0
- data/lib/proguard4.7/src/proguard/MANIFEST.MF +2 -0
- data/lib/proguard4.7/src/proguard/MemberSpecification.java +114 -0
- data/lib/proguard4.7/src/proguard/OutputWriter.java +296 -0
- data/lib/proguard4.7/src/proguard/ParseException.java +51 -0
- data/lib/proguard4.7/src/proguard/ProGuard.java +512 -0
- data/lib/proguard4.7/src/proguard/SeedPrinter.java +97 -0
- data/lib/proguard4.7/src/proguard/SubclassedClassFilter.java +62 -0
- data/lib/proguard4.7/src/proguard/Targeter.java +88 -0
- data/lib/proguard4.7/src/proguard/UpToDateChecker.java +232 -0
- data/lib/proguard4.7/src/proguard/WordReader.java +387 -0
- data/lib/proguard4.7/src/proguard/ant/ClassPathElement.java +191 -0
- data/lib/proguard4.7/src/proguard/ant/ClassSpecificationElement.java +258 -0
- data/lib/proguard4.7/src/proguard/ant/ConfigurationElement.java +53 -0
- data/lib/proguard4.7/src/proguard/ant/ConfigurationTask.java +441 -0
- data/lib/proguard4.7/src/proguard/ant/FilterElement.java +85 -0
- data/lib/proguard4.7/src/proguard/ant/KeepSpecificationElement.java +87 -0
- data/lib/proguard4.7/src/proguard/ant/MemberSpecificationElement.java +218 -0
- data/lib/proguard4.7/src/proguard/ant/ProGuardTask.java +352 -0
- data/lib/proguard4.7/src/proguard/ant/package.html +3 -0
- data/lib/proguard4.7/src/proguard/ant/task.properties +2 -0
- data/lib/proguard4.7/src/proguard/classfile/ClassConstants.java +316 -0
- data/lib/proguard4.7/src/proguard/classfile/ClassPool.java +152 -0
- data/lib/proguard4.7/src/proguard/classfile/Clazz.java +261 -0
- data/lib/proguard4.7/src/proguard/classfile/Field.java +32 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryClass.java +548 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryField.java +77 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryMember.java +108 -0
- data/lib/proguard4.7/src/proguard/classfile/LibraryMethod.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/Member.java +57 -0
- data/lib/proguard4.7/src/proguard/classfile/Method.java +32 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramClass.java +572 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramField.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramMember.java +168 -0
- data/lib/proguard4.7/src/proguard/classfile/ProgramMethod.java +99 -0
- data/lib/proguard4.7/src/proguard/classfile/VisitorAccepter.java +47 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/Attribute.java +142 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/BootstrapMethodInfo.java +89 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/BootstrapMethodsAttribute.java +95 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/CodeAttribute.java +202 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/ConstantValueAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/DeprecatedAttribute.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/EnclosingMethodAttribute.java +132 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/ExceptionInfo.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/ExceptionsAttribute.java +80 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/InnerClassesAttribute.java +80 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/InnerClassesInfo.java +119 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LineNumberInfo.java +50 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LineNumberTableAttribute.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableInfo.java +99 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableTableAttribute.java +79 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableTypeInfo.java +107 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/LocalVariableTypeTableAttribute.java +79 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SignatureAttribute.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SourceDirAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SourceFileAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/SyntheticAttribute.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/UnknownAttribute.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/Annotation.java +143 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/AnnotationDefaultAttribute.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/AnnotationElementValue.java +76 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/AnnotationsAttribute.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ArrayElementValue.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ClassElementValue.java +95 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ConstantElementValue.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ElementValue.java +126 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/EnumConstantElementValue.java +99 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/ParameterAnnotationsAttribute.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeInvisibleAnnotationsAttribute.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeInvisibleParameterAnnotationsAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeVisibleAnnotationsAttribute.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/RuntimeVisibleParameterAnnotationsAttribute.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/package.html +4 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AllAnnotationVisitor.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotatedClassVisitor.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotationToMemberVisitor.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotationTypeFilter.java +102 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/AnnotationVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/ElementValueVisitor.java +51 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/annotation/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/DoubleType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/FloatType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/FullFrame.java +202 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/IntegerType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/LessZeroFrame.java +103 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/LongType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/MoreZeroFrame.java +161 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/NullType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/ObjectType.java +107 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/SameOneFrame.java +115 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/SameZeroFrame.java +74 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/StackMapAttribute.java +91 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/StackMapFrame.java +117 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/StackMapTableAttribute.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/TopType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/UninitializedThisType.java +66 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/UninitializedType.java +106 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/VerificationType.java +103 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/VerificationTypeFactory.java +112 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/visitor/StackMapFrameVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/preverification/visitor/VerificationTypeVisitor.java +65 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllAttributeVisitor.java +117 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllBootstrapMethodInfoVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllExceptionInfoVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AllInnerClassesInfoVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AttributeNameFilter.java +368 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/AttributeVisitor.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/BootstrapMethodInfoVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/ExceptionInfoVisitor.java +37 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/InnerClassesInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/LineNumberInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/LocalVariableInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/LocalVariableTypeInfoVisitor.java +38 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/MultiAttributeVisitor.java +365 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/NonEmptyAttributeFilter.java +293 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/RequiredAttributeFilter.java +360 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/StackSizeComputer.java +378 -0
- data/lib/proguard4.7/src/proguard/classfile/attribute/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/ClassConstant.java +105 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/Constant.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/DoubleConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/FieldrefConstant.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/FloatConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/IntegerConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/InterfaceMethodrefConstant.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/InvokeDynamicConstant.java +148 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/LongConstant.java +82 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/MethodHandleConstant.java +124 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/MethodTypeConstant.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/MethodrefConstant.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/NameAndTypeConstant.java +119 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/RefConstant.java +130 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/StringConstant.java +135 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/Utf8Constant.java +285 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/AllConstantVisitor.java +53 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/BootstrapMethodHandleTraveler.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/ConstantTagFilter.java +86 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/ConstantVisitor.java +49 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/ExceptClassConstantFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/MethodrefTraveler.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/constant/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AccessFixer.java +180 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AnnotationAdder.java +153 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AnnotationsAttributeEditor.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AttributeAdder.java +457 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AttributeSorter.java +89 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/AttributesEditor.java +269 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/BridgeMethodFixer.java +117 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassEditor.java +255 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassElementSorter.java +52 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassMemberSorter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ClassReferenceFixer.java +546 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/CodeAttributeComposer.java +843 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/CodeAttributeEditor.java +1104 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/CodeAttributeEditorResetter.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ComparableConstant.java +249 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantAdder.java +239 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolEditor.java +782 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolRemapper.java +662 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolShrinker.java +578 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ConstantPoolSorter.java +123 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ElementValueAdder.java +217 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ElementValuesEditor.java +238 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ExceptionAdder.java +65 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ExceptionInfoAdder.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ExceptionsAttributeEditor.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InnerClassesAccessFixer.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InstructionAdder.java +76 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InstructionWriter.java +278 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InterfaceAdder.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InterfaceSorter.java +152 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/InterfacesEditor.java +122 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LineNumberInfoAdder.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LineNumberTableAttributeEditor.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableInfoAdder.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableTableAttributeEditor.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableTypeInfoAdder.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/LocalVariableTypeTableAttributeEditor.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/MemberAdder.java +288 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/MemberReferenceFixer.java +447 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/MethodInvocationFixer.java +243 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/NameAndTypeShrinker.java +188 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/NamedAttributeDeleter.java +54 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/ParameterAnnotationsAttributeEditor.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/StackSizeUpdater.java +54 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/SubclassAdder.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/SubclassToAdder.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/Utf8Shrinker.java +455 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableCleaner.java +267 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableEditor.java +130 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableRemapper.java +156 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/VariableSizeUpdater.java +105 -0
- data/lib/proguard4.7/src/proguard/classfile/editor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/BranchInstruction.java +180 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/ConstantInstruction.java +309 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/Instruction.java +920 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/InstructionConstants.java +449 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/InstructionFactory.java +300 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/InstructionUtil.java +67 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/LookUpSwitchInstruction.java +135 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/SimpleInstruction.java +255 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/SwitchInstruction.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/TableSwitchInstruction.java +139 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/VariableInstruction.java +372 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/package.html +9 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/AllInstructionVisitor.java +56 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/InstructionCounter.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/InstructionVisitor.java +42 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/MultiInstructionVisitor.java +131 -0
- data/lib/proguard4.7/src/proguard/classfile/instruction/visitor/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/io/LibraryClassReader.java +383 -0
- data/lib/proguard4.7/src/proguard/classfile/io/ProgramClassReader.java +919 -0
- data/lib/proguard4.7/src/proguard/classfile/io/ProgramClassWriter.java +735 -0
- data/lib/proguard4.7/src/proguard/classfile/io/RuntimeDataInput.java +223 -0
- data/lib/proguard4.7/src/proguard/classfile/io/RuntimeDataOutput.java +224 -0
- data/lib/proguard4.7/src/proguard/classfile/io/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/package.html +15 -0
- data/lib/proguard4.7/src/proguard/classfile/util/AccessUtil.java +105 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassReferenceInitializer.java +559 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassSubHierarchyInitializer.java +77 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassSuperHierarchyInitializer.java +163 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ClassUtil.java +1227 -0
- data/lib/proguard4.7/src/proguard/classfile/util/DescriptorClassEnumeration.java +236 -0
- data/lib/proguard4.7/src/proguard/classfile/util/DynamicClassReferenceInitializer.java +485 -0
- data/lib/proguard4.7/src/proguard/classfile/util/DynamicMemberReferenceInitializer.java +944 -0
- data/lib/proguard4.7/src/proguard/classfile/util/ExternalTypeEnumeration.java +106 -0
- data/lib/proguard4.7/src/proguard/classfile/util/InstructionSequenceMatcher.java +754 -0
- data/lib/proguard4.7/src/proguard/classfile/util/InternalTypeEnumeration.java +204 -0
- data/lib/proguard4.7/src/proguard/classfile/util/MemberFinder.java +197 -0
- data/lib/proguard4.7/src/proguard/classfile/util/MethodLinker.java +160 -0
- data/lib/proguard4.7/src/proguard/classfile/util/SimplifiedVisitor.java +834 -0
- data/lib/proguard4.7/src/proguard/classfile/util/StringReferenceInitializer.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/util/StringSharer.java +172 -0
- data/lib/proguard4.7/src/proguard/classfile/util/WarningPrinter.java +136 -0
- data/lib/proguard4.7/src/proguard/classfile/util/package.html +3 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllClassVisitor.java +47 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllFieldVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllMemberVisitor.java +57 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/AllMethodVisitor.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/BottomClassFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassAccessFilter.java +88 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassCleaner.java +275 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassCollector.java +58 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassCounter.java +56 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassHierarchyTraveler.java +91 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassNameFilter.java +112 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPoolFiller.java +55 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPoolVisitor.java +37 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPresenceFilter.java +93 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassPrinter.java +1011 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassVersionFilter.java +85 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassVersionSetter.java +83 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ClassVisitor.java +36 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ConcreteClassDownTraveler.java +100 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/DotClassClassVisitor.java +89 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptClassFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptClassesFilter.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionCounter.java +52 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionExcludedOffsetFilter.java +64 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionHandlerConstantVisitor.java +62 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionHandlerFilter.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionOffsetFilter.java +64 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ExceptionRangeFilter.java +68 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ImplementedClassConstantFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ImplementedClassFilter.java +71 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ImplementingClassConstantFilter.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/LibraryClassFilter.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/LibraryMemberFilter.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberAccessFilter.java +122 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberClassAccessFilter.java +106 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberCollector.java +59 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberCounter.java +72 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberDescriptorFilter.java +113 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberNameFilter.java +113 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberToClassVisitor.java +90 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MemberVisitor.java +40 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MethodImplementationFilter.java +70 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MethodImplementationTraveler.java +128 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MultiClassPoolVisitor.java +88 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MultiClassVisitor.java +97 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/MultiMemberVisitor.java +113 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/NamedClassVisitor.java +49 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/NamedFieldVisitor.java +61 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/NamedMethodVisitor.java +61 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ProgramClassFilter.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ProgramMemberFilter.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ReferencedClassVisitor.java +255 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/ReferencedMemberVisitor.java +73 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SimilarMemberVisitor.java +125 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SimpleClassPrinter.java +167 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SubclassFilter.java +91 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/SubclassTraveler.java +60 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/VariableClassVisitor.java +78 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/VariableMemberVisitor.java +96 -0
- data/lib/proguard4.7/src/proguard/classfile/visitor/package.html +40 -0
- data/lib/proguard4.7/src/proguard/evaluation/BasicBranchUnit.java +126 -0
- data/lib/proguard4.7/src/proguard/evaluation/BasicInvocationUnit.java +425 -0
- data/lib/proguard4.7/src/proguard/evaluation/BranchUnit.java +63 -0
- data/lib/proguard4.7/src/proguard/evaluation/ClassConstantValueFactory.java +53 -0
- data/lib/proguard4.7/src/proguard/evaluation/ConstantValueFactory.java +113 -0
- data/lib/proguard4.7/src/proguard/evaluation/InvocationUnit.java +62 -0
- data/lib/proguard4.7/src/proguard/evaluation/Processor.java +908 -0
- data/lib/proguard4.7/src/proguard/evaluation/Stack.java +560 -0
- data/lib/proguard4.7/src/proguard/evaluation/TracedStack.java +342 -0
- data/lib/proguard4.7/src/proguard/evaluation/TracedVariables.java +199 -0
- data/lib/proguard4.7/src/proguard/evaluation/Variables.java +347 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/Category1Value.java +41 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/Category2Value.java +41 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ComparisonValue.java +69 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeDoubleValue.java +81 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeFloatValue.java +81 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeIntegerValue.java +87 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/CompositeLongValue.java +87 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedByteValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedCharacterValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedDoubleValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedFloatValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedIntegerValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedLongValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ConvertedShortValue.java +64 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/DoubleValue.java +359 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/FloatValue.java +359 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedDoubleValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedFloatValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedIntegerValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedLongValue.java +67 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedReferenceValue.java +102 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IdentifiedValueFactory.java +75 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/InstructionOffsetValue.java +307 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/IntegerValue.java +1002 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/LongValue.java +554 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedDoubleValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedFloatValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedIntegerValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/NegatedLongValue.java +71 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularDoubleValue.java +216 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularFloatValue.java +216 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularIntegerValue.java +383 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ParticularLongValue.java +271 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ReferenceValue.java +540 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificDoubleValue.java +186 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificFloatValue.java +186 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificIntegerValue.java +354 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificLongValue.java +259 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/SpecificValueFactory.java +97 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/TopValue.java +79 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownDoubleValue.java +125 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownFloatValue.java +125 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownIntegerValue.java +216 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/UnknownLongValue.java +160 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/Value.java +169 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/ValueFactory.java +193 -0
- data/lib/proguard4.7/src/proguard/evaluation/value/package.html +3 -0
- data/lib/proguard4.7/src/proguard/gui/ClassPathPanel.java +441 -0
- data/lib/proguard4.7/src/proguard/gui/ClassSpecificationDialog.java +546 -0
- data/lib/proguard4.7/src/proguard/gui/ClassSpecificationsPanel.java +231 -0
- data/lib/proguard4.7/src/proguard/gui/ExtensionFileFilter.java +78 -0
- data/lib/proguard4.7/src/proguard/gui/FilterBuilder.java +208 -0
- data/lib/proguard4.7/src/proguard/gui/FilterDialog.java +320 -0
- data/lib/proguard4.7/src/proguard/gui/GUIResources.java +56 -0
- data/lib/proguard4.7/src/proguard/gui/GUIResources.properties +643 -0
- data/lib/proguard4.7/src/proguard/gui/KeepSpecificationsPanel.java +81 -0
- data/lib/proguard4.7/src/proguard/gui/ListPanel.java +341 -0
- data/lib/proguard4.7/src/proguard/gui/MANIFEST.MF +3 -0
- data/lib/proguard4.7/src/proguard/gui/MemberSpecificationDialog.java +509 -0
- data/lib/proguard4.7/src/proguard/gui/MemberSpecificationsPanel.java +304 -0
- data/lib/proguard4.7/src/proguard/gui/MessageDialogRunnable.java +90 -0
- data/lib/proguard4.7/src/proguard/gui/OptimizationsDialog.java +251 -0
- data/lib/proguard4.7/src/proguard/gui/ProGuardGUI.java +1777 -0
- data/lib/proguard4.7/src/proguard/gui/ProGuardRunnable.java +154 -0
- data/lib/proguard4.7/src/proguard/gui/ReTraceRunnable.java +149 -0
- data/lib/proguard4.7/src/proguard/gui/SwingUtil.java +82 -0
- data/lib/proguard4.7/src/proguard/gui/TabbedPane.java +229 -0
- data/lib/proguard4.7/src/proguard/gui/TextAreaOutputStream.java +81 -0
- data/lib/proguard4.7/src/proguard/gui/arrow.gif +0 -0
- data/lib/proguard4.7/src/proguard/gui/boilerplate.pro +410 -0
- data/lib/proguard4.7/src/proguard/gui/default.pro +318 -0
- data/lib/proguard4.7/src/proguard/gui/package.html +3 -0
- data/lib/proguard4.7/src/proguard/gui/splash/BufferedSprite.java +145 -0
- data/lib/proguard4.7/src/proguard/gui/splash/CircleSprite.java +74 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ClipSprite.java +85 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ColorSprite.java +65 -0
- data/lib/proguard4.7/src/proguard/gui/splash/CompositeSprite.java +56 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantColor.java +51 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantDouble.java +49 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantFont.java +46 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantInt.java +49 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantString.java +49 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ConstantTiming.java +57 -0
- data/lib/proguard4.7/src/proguard/gui/splash/FontSprite.java +65 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ImageSprite.java +76 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearColor.java +72 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearDouble.java +55 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearInt.java +55 -0
- data/lib/proguard4.7/src/proguard/gui/splash/LinearTiming.java +55 -0
- data/lib/proguard4.7/src/proguard/gui/splash/OverrideGraphics2D.java +598 -0
- data/lib/proguard4.7/src/proguard/gui/splash/RectangleSprite.java +114 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SawToothTiming.java +53 -0
- data/lib/proguard4.7/src/proguard/gui/splash/ShadowedSprite.java +109 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SineTiming.java +53 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SmoothTiming.java +66 -0
- data/lib/proguard4.7/src/proguard/gui/splash/SplashPanel.java +235 -0
- data/lib/proguard4.7/src/proguard/gui/splash/Sprite.java +41 -0
- data/lib/proguard4.7/src/proguard/gui/splash/TextSprite.java +89 -0
- data/lib/proguard4.7/src/proguard/gui/splash/TimeSwitchSprite.java +75 -0
- data/lib/proguard4.7/src/proguard/gui/splash/Timing.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/TypeWriterString.java +71 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableColor.java +36 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableDouble.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableFont.java +36 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableInt.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableSizeFont.java +65 -0
- data/lib/proguard4.7/src/proguard/gui/splash/VariableString.java +34 -0
- data/lib/proguard4.7/src/proguard/gui/splash/package.html +4 -0
- data/lib/proguard4.7/src/proguard/gui/vtitle.png +0 -0
- data/lib/proguard4.7/src/proguard/io/CascadingDataEntryWriter.java +94 -0
- data/lib/proguard4.7/src/proguard/io/ClassFilter.java +59 -0
- data/lib/proguard4.7/src/proguard/io/ClassReader.java +115 -0
- data/lib/proguard4.7/src/proguard/io/ClassRewriter.java +80 -0
- data/lib/proguard4.7/src/proguard/io/DataEntry.java +62 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryClassWriter.java +85 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryCopier.java +247 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryDirectoryFilter.java +40 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryFilter.java +38 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryNameFilter.java +54 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryObfuscator.java +150 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryParentFilter.java +51 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryPump.java +43 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryReader.java +38 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryRenamer.java +104 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryRewriter.java +148 -0
- data/lib/proguard4.7/src/proguard/io/DataEntryWriter.java +73 -0
- data/lib/proguard4.7/src/proguard/io/DirectoryFilter.java +58 -0
- data/lib/proguard4.7/src/proguard/io/DirectoryPump.java +78 -0
- data/lib/proguard4.7/src/proguard/io/DirectoryWriter.java +165 -0
- data/lib/proguard4.7/src/proguard/io/FileDataEntry.java +96 -0
- data/lib/proguard4.7/src/proguard/io/FilteredDataEntryReader.java +90 -0
- data/lib/proguard4.7/src/proguard/io/FilteredDataEntryWriter.java +125 -0
- data/lib/proguard4.7/src/proguard/io/Finisher.java +37 -0
- data/lib/proguard4.7/src/proguard/io/JarReader.java +75 -0
- data/lib/proguard4.7/src/proguard/io/JarWriter.java +235 -0
- data/lib/proguard4.7/src/proguard/io/ManifestRewriter.java +216 -0
- data/lib/proguard4.7/src/proguard/io/NameFilter.java +83 -0
- data/lib/proguard4.7/src/proguard/io/ParentDataEntryWriter.java +75 -0
- data/lib/proguard4.7/src/proguard/io/RenamedDataEntry.java +83 -0
- data/lib/proguard4.7/src/proguard/io/ZipDataEntry.java +98 -0
- data/lib/proguard4.7/src/proguard/io/package.html +4 -0
- data/lib/proguard4.7/src/proguard/obfuscate/AttributeShrinker.java +120 -0
- data/lib/proguard4.7/src/proguard/obfuscate/AttributeUsageMarker.java +71 -0
- data/lib/proguard4.7/src/proguard/obfuscate/ClassObfuscator.java +533 -0
- data/lib/proguard4.7/src/proguard/obfuscate/ClassRenamer.java +109 -0
- data/lib/proguard4.7/src/proguard/obfuscate/DictionaryNameFactory.java +189 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MapCleaner.java +57 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingKeeper.java +177 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingPrinter.java +147 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingProcessor.java +79 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MappingReader.java +199 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameCleaner.java +60 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameCollector.java +106 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameConflictFixer.java +159 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberNameFilter.java +120 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberObfuscator.java +230 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MemberSpecialNameFilter.java +101 -0
- data/lib/proguard4.7/src/proguard/obfuscate/MultiMappingProcessor.java +96 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NameFactory.java +34 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NameFactoryResetter.java +59 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NameMarker.java +166 -0
- data/lib/proguard4.7/src/proguard/obfuscate/NumericNameFactory.java +49 -0
- data/lib/proguard4.7/src/proguard/obfuscate/Obfuscator.java +445 -0
- data/lib/proguard4.7/src/proguard/obfuscate/ParameterNameMarker.java +128 -0
- data/lib/proguard4.7/src/proguard/obfuscate/SimpleNameFactory.java +156 -0
- data/lib/proguard4.7/src/proguard/obfuscate/SourceFileRenamer.java +84 -0
- data/lib/proguard4.7/src/proguard/obfuscate/SpecialNameFactory.java +83 -0
- data/lib/proguard4.7/src/proguard/obfuscate/package.html +3 -0
- data/lib/proguard4.7/src/proguard/optimize/BootstrapMethodArgumentShrinker.java +103 -0
- data/lib/proguard4.7/src/proguard/optimize/ChangedCodePrinter.java +297 -0
- data/lib/proguard4.7/src/proguard/optimize/ConstantMemberFilter.java +77 -0
- data/lib/proguard4.7/src/proguard/optimize/ConstantParameterFilter.java +79 -0
- data/lib/proguard4.7/src/proguard/optimize/DuplicateInitializerFixer.java +215 -0
- data/lib/proguard4.7/src/proguard/optimize/DuplicateInitializerInvocationFixer.java +161 -0
- data/lib/proguard4.7/src/proguard/optimize/KeepMarker.java +95 -0
- data/lib/proguard4.7/src/proguard/optimize/KeptClassFilter.java +69 -0
- data/lib/proguard4.7/src/proguard/optimize/KeptMemberFilter.java +88 -0
- data/lib/proguard4.7/src/proguard/optimize/MemberDescriptorSpecializer.java +138 -0
- data/lib/proguard4.7/src/proguard/optimize/MethodDescriptorShrinker.java +317 -0
- data/lib/proguard4.7/src/proguard/optimize/MethodStaticizer.java +87 -0
- data/lib/proguard4.7/src/proguard/optimize/OptimizationInfoMemberFilter.java +94 -0
- data/lib/proguard4.7/src/proguard/optimize/Optimizer.java +963 -0
- data/lib/proguard4.7/src/proguard/optimize/ParameterShrinker.java +146 -0
- data/lib/proguard4.7/src/proguard/optimize/TailRecursionSimplifier.java +356 -0
- data/lib/proguard4.7/src/proguard/optimize/WriteOnlyFieldFilter.java +65 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/EvaluationShrinker.java +2082 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/EvaluationSimplifier.java +973 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/LivenessAnalyzer.java +526 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/LoadingInvocationUnit.java +195 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/PartialEvaluator.java +1282 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/StoringInvocationUnit.java +207 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/TracedBranchUnit.java +59 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/VariableOptimizer.java +345 -0
- data/lib/proguard4.7/src/proguard/optimize/evaluation/package.html +4 -0
- data/lib/proguard4.7/src/proguard/optimize/info/AccessMethodMarker.java +202 -0
- data/lib/proguard4.7/src/proguard/optimize/info/BackwardBranchMarker.java +90 -0
- data/lib/proguard4.7/src/proguard/optimize/info/CatchExceptionMarker.java +69 -0
- data/lib/proguard4.7/src/proguard/optimize/info/CaughtClassFilter.java +63 -0
- data/lib/proguard4.7/src/proguard/optimize/info/CaughtClassMarker.java +64 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ClassOptimizationInfo.java +165 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ClassOptimizationInfoSetter.java +47 -0
- data/lib/proguard4.7/src/proguard/optimize/info/DotClassFilter.java +63 -0
- data/lib/proguard4.7/src/proguard/optimize/info/DotClassMarker.java +96 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ExceptionInstructionChecker.java +193 -0
- data/lib/proguard4.7/src/proguard/optimize/info/FieldOptimizationInfo.java +204 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstanceofClassFilter.java +63 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstanceofClassMarker.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstantiationClassFilter.java +62 -0
- data/lib/proguard4.7/src/proguard/optimize/info/InstantiationClassMarker.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/info/MemberOptimizationInfoSetter.java +59 -0
- data/lib/proguard4.7/src/proguard/optimize/info/MethodInvocationMarker.java +107 -0
- data/lib/proguard4.7/src/proguard/optimize/info/MethodOptimizationInfo.java +302 -0
- data/lib/proguard4.7/src/proguard/optimize/info/NoSideEffectMethodMarker.java +91 -0
- data/lib/proguard4.7/src/proguard/optimize/info/NonPrivateMemberMarker.java +171 -0
- data/lib/proguard4.7/src/proguard/optimize/info/PackageVisibleMemberContainingClassMarker.java +85 -0
- data/lib/proguard4.7/src/proguard/optimize/info/PackageVisibleMemberInvokingClassMarker.java +129 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ParameterUsageMarker.java +285 -0
- data/lib/proguard4.7/src/proguard/optimize/info/ReadWriteFieldMarker.java +163 -0
- data/lib/proguard4.7/src/proguard/optimize/info/SideEffectInstructionChecker.java +245 -0
- data/lib/proguard4.7/src/proguard/optimize/info/SideEffectMethodMarker.java +175 -0
- data/lib/proguard4.7/src/proguard/optimize/info/StaticInitializerContainingClassFilter.java +62 -0
- data/lib/proguard4.7/src/proguard/optimize/info/StaticInitializerContainingClassMarker.java +65 -0
- data/lib/proguard4.7/src/proguard/optimize/info/SuperInvocationMarker.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/info/VariableUsageMarker.java +96 -0
- data/lib/proguard4.7/src/proguard/optimize/info/package.html +4 -0
- data/lib/proguard4.7/src/proguard/optimize/package.html +4 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/BranchTargetFinder.java +687 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/ClassFinalizer.java +84 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/ClassMerger.java +576 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/GotoCommonCodeReplacer.java +266 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/GotoGotoReplacer.java +115 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/GotoReturnReplacer.java +115 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/HorizontalClassMerger.java +90 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/InstructionSequenceConstants.java +4424 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/InstructionSequenceReplacer.java +420 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/InstructionSequencesReplacer.java +138 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/MemberPrivatizer.java +103 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/MethodFinalizer.java +93 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/MethodInliner.java +597 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/NopRemover.java +89 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/PeepholeOptimizer.java +103 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/ReachableCodeMarker.java +262 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/RetargetedInnerClassAttributeRemover.java +170 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/TargetClassChanger.java +455 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/UnreachableCodeRemover.java +143 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/UnreachableExceptionRemover.java +163 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/VariableShrinker.java +129 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/VerticalClassMerger.java +88 -0
- data/lib/proguard4.7/src/proguard/optimize/peephole/package.html +3 -0
- data/lib/proguard4.7/src/proguard/package.html +5 -0
- data/lib/proguard4.7/src/proguard/preverify/CodePreverifier.java +611 -0
- data/lib/proguard4.7/src/proguard/preverify/CodeSubroutineInliner.java +406 -0
- data/lib/proguard4.7/src/proguard/preverify/Preverifier.java +73 -0
- data/lib/proguard4.7/src/proguard/preverify/SubroutineInliner.java +73 -0
- data/lib/proguard4.7/src/proguard/retrace/MANIFEST.MF +3 -0
- data/lib/proguard4.7/src/proguard/retrace/ReTrace.java +749 -0
- data/lib/proguard4.7/src/proguard/retrace/package.html +4 -0
- data/lib/proguard4.7/src/proguard/shrink/AnnotationUsageMarker.java +333 -0
- data/lib/proguard4.7/src/proguard/shrink/ClassShrinker.java +458 -0
- data/lib/proguard4.7/src/proguard/shrink/InnerUsageMarker.java +174 -0
- data/lib/proguard4.7/src/proguard/shrink/InterfaceUsageMarker.java +152 -0
- data/lib/proguard4.7/src/proguard/shrink/ShortestUsageMark.java +183 -0
- data/lib/proguard4.7/src/proguard/shrink/ShortestUsageMarker.java +277 -0
- data/lib/proguard4.7/src/proguard/shrink/ShortestUsagePrinter.java +210 -0
- data/lib/proguard4.7/src/proguard/shrink/Shrinker.java +181 -0
- data/lib/proguard4.7/src/proguard/shrink/UsageMarker.java +1036 -0
- data/lib/proguard4.7/src/proguard/shrink/UsagePrinter.java +177 -0
- data/lib/proguard4.7/src/proguard/shrink/UsedClassFilter.java +74 -0
- data/lib/proguard4.7/src/proguard/shrink/UsedMemberFilter.java +93 -0
- data/lib/proguard4.7/src/proguard/shrink/package.html +3 -0
- data/lib/proguard4.7/src/proguard/util/AndMatcher.java +49 -0
- data/lib/proguard4.7/src/proguard/util/ClassNameParser.java +216 -0
- data/lib/proguard4.7/src/proguard/util/ConstantMatcher.java +48 -0
- data/lib/proguard4.7/src/proguard/util/EmptyStringMatcher.java +36 -0
- data/lib/proguard4.7/src/proguard/util/ExtensionMatcher.java +63 -0
- data/lib/proguard4.7/src/proguard/util/FileNameParser.java +121 -0
- data/lib/proguard4.7/src/proguard/util/FixedStringMatcher.java +56 -0
- data/lib/proguard4.7/src/proguard/util/ListMatcher.java +69 -0
- data/lib/proguard4.7/src/proguard/util/ListParser.java +137 -0
- data/lib/proguard4.7/src/proguard/util/ListUtil.java +180 -0
- data/lib/proguard4.7/src/proguard/util/NameParser.java +106 -0
- data/lib/proguard4.7/src/proguard/util/NotMatcher.java +46 -0
- data/lib/proguard4.7/src/proguard/util/OrMatcher.java +49 -0
- data/lib/proguard4.7/src/proguard/util/SettableMatcher.java +46 -0
- data/lib/proguard4.7/src/proguard/util/StringMatcher.java +38 -0
- data/lib/proguard4.7/src/proguard/util/StringParser.java +35 -0
- data/lib/proguard4.7/src/proguard/util/VariableStringMatcher.java +126 -0
- data/lib/proguard4.7/src/proguard/util/package.html +3 -0
- data/lib/proguard4.7/src/proguard/wtk/ProGuardObfuscator.java +141 -0
- data/lib/proguard4.7/src/proguard/wtk/default.pro +114 -0
- data/lib/proguard4.7/src/proguard/wtk/package.html +3 -0
- metadata +960 -10
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
<!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
|
5
|
+
<meta http-equiv="content-script-type" content="text/javascript">
|
|
6
|
+
<meta http-equiv="content-style-type" content="text/css">
|
|
7
|
+
<link rel="stylesheet" type="text/css" href="style.css">
|
|
8
|
+
<title>ProGuard Feedback</title>
|
|
9
|
+
<script type="text/javascript" language="JavaScript">
|
|
10
|
+
<!--
|
|
11
|
+
if (window.self==window.top)
|
|
12
|
+
window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
|
|
13
|
+
else {
|
|
14
|
+
var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|
|
15
|
+
if (window.top.location.hash!=hash)
|
|
16
|
+
window.top.location.hash=hash;
|
|
17
|
+
}
|
|
18
|
+
//-->
|
|
19
|
+
</script>
|
|
20
|
+
</head>
|
|
21
|
+
<body>
|
|
22
|
+
|
|
23
|
+
<h2>Feedback</h2>
|
|
24
|
+
|
|
25
|
+
By now, I've invested a fair amount of time in <b>ProGuard</b>. You can help
|
|
26
|
+
by providing feedback! If you have problems, bugs, bug fixes, ideas,
|
|
27
|
+
encouragements, etc., please get in touch:
|
|
28
|
+
<p>
|
|
29
|
+
<ul class="spacious">
|
|
30
|
+
<li>Through
|
|
31
|
+
<a href="http://www.saikoa.com/proguard/support" target="_top">Saikoa</a>,
|
|
32
|
+
we provide professional support for ProGuard. If you find ProGuard useful
|
|
33
|
+
and you would like to have some professional backing, this is the place to
|
|
34
|
+
go.</li>
|
|
35
|
+
|
|
36
|
+
<li>The <a href="https://sourceforge.net/projects/proguard/forums/forum/182456"
|
|
37
|
+
target="other">help forum</a> (at SourceForge) is the right place to ask
|
|
38
|
+
questions about any problems you might have configuring and running
|
|
39
|
+
ProGuard. At this time, I can generally only assist other open source
|
|
40
|
+
projects though. If you're working on commercial software, please consider
|
|
41
|
+
our professional support above.</li>
|
|
42
|
+
|
|
43
|
+
<li>The <a href="https://sourceforge.net/projects/proguard/forums/forum/182455"
|
|
44
|
+
target="other">open discussion forum</a> (at SourceForge) offers a place
|
|
45
|
+
to share your thoughts and discuss new ideas.</li>
|
|
46
|
+
|
|
47
|
+
<li>The <a
|
|
48
|
+
href="http://sourceforge.net/tracker/?atid=474704&group_id=54750&func=browse"
|
|
49
|
+
target="other">bug tracking page</a> (at SourceForge) allows you to submit
|
|
50
|
+
and consult bug reports. Please make sure the reports are complete and
|
|
51
|
+
concise. If I can't reproduce the problem, I most likely can't fix it
|
|
52
|
+
either.</li>
|
|
53
|
+
|
|
54
|
+
<li>The <a
|
|
55
|
+
|
|
56
|
+
href="http://sourceforge.net/tracker/?atid=474707&group_id=54750&func=browse"
|
|
57
|
+
target="other">feature request page</a> (at SourceForge) allows you to
|
|
58
|
+
submit and consult feature requests. I generally have my own road map in
|
|
59
|
+
mind, but this is the place express your interest in new and existing
|
|
60
|
+
ideas.</li>
|
|
61
|
+
|
|
62
|
+
<li>The <a href="https://sourceforge.net/projects/proguard/files/"
|
|
63
|
+
target="other">download section</a> at SourceForge and the <a
|
|
64
|
+
href="http://software.freshmeat.net/projects/proguard/"
|
|
65
|
+
target="other">project page</a> at FreshMeat offer the possibility to
|
|
66
|
+
subscribe to the announcements of new releases. They are the most
|
|
67
|
+
efficient way to stay abreast of the latest developments.</li>
|
|
68
|
+
|
|
69
|
+
<li>For anything that doesn't fall in the above categories, you can mail me
|
|
70
|
+
directly at
|
|
71
|
+
|
|
72
|
+
<script type="text/javascript" language="JavaScript">
|
|
73
|
+
<!--
|
|
74
|
+
document.write("<a href=\"ma");
|
|
75
|
+
document.write("ilto:");
|
|
76
|
+
document.write("lafortune");
|
|
77
|
+
document.write("@");
|
|
78
|
+
document.write("users.sourceforge.net\">");
|
|
79
|
+
document.write("lafortune");
|
|
80
|
+
document.write("@");
|
|
81
|
+
document.write("users.sourceforge.net");
|
|
82
|
+
document.write("</a>");
|
|
83
|
+
document.write(" <em>or</em> at ");
|
|
84
|
+
document.write("<a href=\"ma");
|
|
85
|
+
document.write("ilto:");
|
|
86
|
+
document.write("eric");
|
|
87
|
+
document.write("@");
|
|
88
|
+
document.write("graphics.cornell.edu\">");
|
|
89
|
+
document.write("eric");
|
|
90
|
+
document.write("@");
|
|
91
|
+
document.write("graphics.cornell.edu");
|
|
92
|
+
document.write("</a>");
|
|
93
|
+
//-->
|
|
94
|
+
</script>
|
|
95
|
+
<noscript>
|
|
96
|
+
< lafortune @ users . sourceforge . net >
|
|
97
|
+
<em>or</em> at
|
|
98
|
+
< eric @ graphics . cornell . edu > (please remove the spaces)
|
|
99
|
+
</noscript>
|
|
100
|
+
.</li>
|
|
101
|
+
</ul>
|
|
102
|
+
<p>
|
|
103
|
+
I can't promise a swift answer, or any answer at all, for that matter, but I
|
|
104
|
+
like seeing any constructive comments.
|
|
105
|
+
<p>
|
|
106
|
+
|
|
107
|
+
<b>ProGuard</b> isn't a typical open source project, in the sense that I am
|
|
108
|
+
<em>not</em> looking for code contributions. Developing on my own allows me to
|
|
109
|
+
do things my way, without the overhead and compromises associated with larger
|
|
110
|
+
projects.
|
|
111
|
+
|
|
112
|
+
<hr />
|
|
113
|
+
<noscript><div><a target="_top" href="index.html" class="button">Show menu</a></div></noscript>
|
|
114
|
+
<address>
|
|
115
|
+
Copyright © 2002-2011
|
|
116
|
+
<a target="other" href="http://www.lafortune.eu/">Eric Lafortune</a>.
|
|
117
|
+
</address>
|
|
118
|
+
|
|
119
|
+
</body>
|
|
120
|
+
</html>
|
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
<!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
|
5
|
+
<meta http-equiv="content-script-type" content="text/javascript">
|
|
6
|
+
<meta http-equiv="content-style-type" content="text/css">
|
|
7
|
+
<meta name="author" content="Eric Lafortune">
|
|
8
|
+
<meta name="description" content="ProGuard: java shrinker, optimizer, obfuscator, and preverifier">
|
|
9
|
+
<meta name="keywords" content="java obfuscator, optimizer, shrinker, preverfier">
|
|
10
|
+
<link rel="stylesheet" type="text/css" href="style.css">
|
|
11
|
+
<link rel="shortcut icon" type="image/x-icon" href="favicon.ico">
|
|
12
|
+
<title>ProGuard</title>
|
|
13
|
+
</head>
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript" language="JavaScript">
|
|
16
|
+
<!--
|
|
17
|
+
var main="main.html";
|
|
18
|
+
if (window.location.hash.length > 1)
|
|
19
|
+
main=window.location.hash.substr(1);
|
|
20
|
+
var sections="sections.html";
|
|
21
|
+
if (main.search(/manual\//) >= 0)
|
|
22
|
+
sections="manual/sections.html";
|
|
23
|
+
|
|
24
|
+
document.write("<frameset rows=\"50,*\" framespacing=\"0\" frameborder=\"no\"><frame id=\"title\" name=\"title\" src=\"title.html\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" noresize /><frameset cols=\"120,*\" framespacing=\"0\" frameborder=\"no\"><frame id=\"sections\" name=\"sections\" src=\""+sections+"\" scrolling=\"no\" marginwidth=\"0\" marginheight=\"0\" noresize /><frame id=\"main\" name=\"main\" src=\""+main+"\" scrolling=\"auto\" marginwidth=\"10\" marginheight=\"10\" noresize /></frameset></frameset>");
|
|
25
|
+
//-->
|
|
26
|
+
</script>
|
|
27
|
+
|
|
28
|
+
<noscript>
|
|
29
|
+
<frameset
|
|
30
|
+
rows="50,*"
|
|
31
|
+
framespacing="0"
|
|
32
|
+
frameborder="no">
|
|
33
|
+
|
|
34
|
+
<frame
|
|
35
|
+
id="title"
|
|
36
|
+
name="title"
|
|
37
|
+
src="title.html"
|
|
38
|
+
scrolling="no"
|
|
39
|
+
marginwidth="0"
|
|
40
|
+
marginheight="0"
|
|
41
|
+
noresize />
|
|
42
|
+
|
|
43
|
+
<frameset
|
|
44
|
+
cols="120,*"
|
|
45
|
+
framespacing="0"
|
|
46
|
+
frameborder="no">
|
|
47
|
+
|
|
48
|
+
<frame
|
|
49
|
+
id="sections"
|
|
50
|
+
name="sections"
|
|
51
|
+
src="sections.html"
|
|
52
|
+
scrolling="no"
|
|
53
|
+
marginwidth="0"
|
|
54
|
+
marginheight="0"
|
|
55
|
+
noresize />
|
|
56
|
+
|
|
57
|
+
<frame
|
|
58
|
+
id="main"
|
|
59
|
+
name="main"
|
|
60
|
+
src="main.html"
|
|
61
|
+
scrolling="auto"
|
|
62
|
+
marginwidth="10"
|
|
63
|
+
marginheight="10"
|
|
64
|
+
noresize />
|
|
65
|
+
|
|
66
|
+
</frameset>
|
|
67
|
+
</frameset>
|
|
68
|
+
</noscript>
|
|
69
|
+
|
|
70
|
+
<noframes>
|
|
71
|
+
<body>
|
|
72
|
+
<p class="intro">
|
|
73
|
+
<b>ProGuard</b> is a free Java class file shrinker, optimizer, obfuscator, and
|
|
74
|
+
preverifier. It detects and removes unused classes, fields, methods, and
|
|
75
|
+
attributes. It optimizes bytecode and removes unused instructions. It renames
|
|
76
|
+
the remaining classes, fields, and methods using short meaningless names.
|
|
77
|
+
Finally, it preverifies the processed code for Java 6 or for Java Micro
|
|
78
|
+
Edition.
|
|
79
|
+
</p>
|
|
80
|
+
<p>
|
|
81
|
+
Your browser doesn't support frames, but that's cool.
|
|
82
|
+
<p>
|
|
83
|
+
You can go straight to the <a href="main.html">main page</a>.
|
|
84
|
+
|
|
85
|
+
<hr />
|
|
86
|
+
<address>
|
|
87
|
+
Copyright © 2002-2011
|
|
88
|
+
<a target="other" href="http://www.lafortune.eu/">Eric Lafortune</a>.
|
|
89
|
+
</address>
|
|
90
|
+
</body>
|
|
91
|
+
</noframes>
|
|
92
|
+
</html>
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
<!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
|
5
|
+
<meta http-equiv="content-style-type" content="text/css">
|
|
6
|
+
<link rel="stylesheet" type="text/css" href="style.css">
|
|
7
|
+
<title>ProGuard License</title>
|
|
8
|
+
<script type="text/javascript" language="JavaScript">
|
|
9
|
+
<!--
|
|
10
|
+
if (window.self==window.top)
|
|
11
|
+
window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
|
|
12
|
+
else {
|
|
13
|
+
var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|
|
14
|
+
if (window.top.location.hash!=hash)
|
|
15
|
+
window.top.location.hash=hash;
|
|
16
|
+
}
|
|
17
|
+
//-->
|
|
18
|
+
</script>
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
|
|
22
|
+
<h2>License</h2>
|
|
23
|
+
|
|
24
|
+
<b>ProGuard</b> is free. You can use it freely for processing your
|
|
25
|
+
applications, commercial or not. Your code obviously remains yours after
|
|
26
|
+
having been processed, and its license can remain the same.
|
|
27
|
+
<p>
|
|
28
|
+
|
|
29
|
+
<b>ProGuard</b> itself is copyrighted, but its distribution license provides
|
|
30
|
+
you with some rights for modifying and redistributing its code and its
|
|
31
|
+
documentation. More specifically, <b>ProGuard</b> is distributed under the
|
|
32
|
+
terms of the <a href="GPL.html">GNU General Public License</a> (GPL), version
|
|
33
|
+
2, as published by the <a href="http://www.fsf.org/" target="other">Free
|
|
34
|
+
Software Foundation</a> (FSF). In short, this means that you may freely
|
|
35
|
+
redistribute the program, modified or as is, on the condition that you make
|
|
36
|
+
the complete source code available as well. If you develop a program that is
|
|
37
|
+
linked with
|
|
38
|
+
<b>ProGuard</b>, the program as a whole has to be distributed at no charge
|
|
39
|
+
under the GPL. I am granting a <a href="GPL_exception.html">special
|
|
40
|
+
exception</a> to the latter clause (in wording suggested by
|
|
41
|
+
the <a href="http://www.gnu.org/copyleft/gpl-faq.html#GPLIncompatibleLibs"
|
|
42
|
+
target="other">FSF</a>), for combinations with the following stand-alone
|
|
43
|
+
applications: Apache Ant, Apache Maven, the Google Android SDK, the Eclipse
|
|
44
|
+
ProGuardDT GUI, the EclipseME JME IDE, the Oracle NetBeans Java IDE, the Oracle
|
|
45
|
+
JME Wireless Toolkit, the Simple Build Tool for Scala, the NeoMAD Tools by
|
|
46
|
+
Neomades, the Javaground Tools, and the Sanaware Tools.
|
|
47
|
+
|
|
48
|
+
<p>
|
|
49
|
+
The <b>ProGuard user documentation</b> represents an important part of this
|
|
50
|
+
work. It may only be redistributed without changes, along with the unmodified
|
|
51
|
+
version of the code.
|
|
52
|
+
|
|
53
|
+
<hr />
|
|
54
|
+
<noscript><div><a target="_top" href="index.html" class="button">Show menu</a></div></noscript>
|
|
55
|
+
<address>
|
|
56
|
+
Copyright © 2002-2011
|
|
57
|
+
<a target="other" href="http://www.lafortune.eu/">Eric Lafortune</a>.
|
|
58
|
+
</address>
|
|
59
|
+
</body>
|
|
60
|
+
</html>
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
<!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
|
5
|
+
<meta http-equiv="content-style-type" content="text/css">
|
|
6
|
+
<meta name="author" content="Eric Lafortune">
|
|
7
|
+
<meta name="description" content="ProGuard: java shrinker, optimizer, obfuscator, and preverifier">
|
|
8
|
+
<meta name="keywords" content="java obfuscator, optimizer, shrinker, preverfier">
|
|
9
|
+
<link rel="stylesheet" type="text/css" href="style.css">
|
|
10
|
+
<title>ProGuard Main</title>
|
|
11
|
+
<script type="text/javascript" language="JavaScript">
|
|
12
|
+
<!--
|
|
13
|
+
if (window.self==window.top)
|
|
14
|
+
window.top.location.replace("index.html#"+window.location.pathname+window.location.hash);
|
|
15
|
+
else {
|
|
16
|
+
if (window.top.location.hash!="")
|
|
17
|
+
window.top.location.hash="";
|
|
18
|
+
}
|
|
19
|
+
//-->
|
|
20
|
+
</script>
|
|
21
|
+
</head>
|
|
22
|
+
<body>
|
|
23
|
+
|
|
24
|
+
<h2>Main</h2>
|
|
25
|
+
|
|
26
|
+
<p class="intro">
|
|
27
|
+
<b>ProGuard</b> is a free Java class file shrinker, optimizer, obfuscator, and
|
|
28
|
+
preverifier. It detects and removes unused classes, fields, methods, and
|
|
29
|
+
attributes. It optimizes bytecode and removes unused instructions. It renames
|
|
30
|
+
the remaining classes, fields, and methods using short meaningless names.
|
|
31
|
+
Finally, it preverifies the processed code for Java 6 or for Java Micro
|
|
32
|
+
Edition.
|
|
33
|
+
</p>
|
|
34
|
+
Some uses of <b>ProGuard</b> are:
|
|
35
|
+
<ul>
|
|
36
|
+
|
|
37
|
+
<li>Creating more compact code, for smaller code archives, faster transfer
|
|
38
|
+
across networks, faster loading, and smaller memory footprints.</li>
|
|
39
|
+
|
|
40
|
+
<li>Making programs and libraries harder to reverse-engineer.</li>
|
|
41
|
+
|
|
42
|
+
<li>Listing dead code, so it can be removed from the source code.</li>
|
|
43
|
+
|
|
44
|
+
<li>Retargeting and preverifying existing class files for Java 6, to take full
|
|
45
|
+
advantage of Java 6's faster class loading.</li>
|
|
46
|
+
|
|
47
|
+
</ul>
|
|
48
|
+
<p>
|
|
49
|
+
<b>ProGuard</b>'s main advantage compared to other Java obfuscators is
|
|
50
|
+
probably its compact template-based configuration. A few intuitive command
|
|
51
|
+
line options or a simple configuration file are usually sufficient.
|
|
52
|
+
The user manual explains all available options and shows examples of this
|
|
53
|
+
powerful configuration style.
|
|
54
|
+
<p>
|
|
55
|
+
<b>ProGuard</b> is fast. It only takes seconds to process programs and
|
|
56
|
+
libraries of several megabytes. The results section presents actual figures
|
|
57
|
+
for a number of applications.
|
|
58
|
+
<p>
|
|
59
|
+
<b>ProGuard</b> is a command-line tool with an optional graphical user
|
|
60
|
+
interface. It also comes with plugins for Ant and for the JME Wireless
|
|
61
|
+
Toolkit.
|
|
62
|
+
<p>
|
|
63
|
+
<p class="intro">
|
|
64
|
+
<b>ProGuard</b> is being used in various development contexts, ranging from
|
|
65
|
+
small Android apps to large Java applications and libraries. Its user base is
|
|
66
|
+
continuing to grow at a fast pace. In order to better manage the many
|
|
67
|
+
questions and requests, we are now providing professional support at
|
|
68
|
+
<a target="_top" href="http://www.saikoa.com/proguard/support">Saikoa</a>.
|
|
69
|
+
</p>
|
|
70
|
+
The following sections provide more detailed information:
|
|
71
|
+
<ul>
|
|
72
|
+
<li><a href="main.html">Main</a>: this overview page.</li>
|
|
73
|
+
<li><a href="results.html">Results</a>: some results obtained with
|
|
74
|
+
<b>ProGuard</b>, including timings and memory usage.</li>
|
|
75
|
+
<li><a href="FAQ.html">FAQ</a>: answers to some Frequently Asked Questions.</li>
|
|
76
|
+
<li><a href="manual/index.html">Manual</a>: the complete <b>ProGuard</b> user
|
|
77
|
+
manual, with examples and troubleshooting tips.</li>
|
|
78
|
+
<li><a href="quality.html">Quality</a>: a discussion of the (excellent) quality
|
|
79
|
+
of <b>ProGuard</b>'s code.</li>
|
|
80
|
+
<li><a href="screenshots.html">Screenshots</a>: some impressions of what <b>ProGuard</b> looks like.</li>
|
|
81
|
+
<li><a href="testimonials.html">Testimonials</a>: what users think of
|
|
82
|
+
<b>ProGuard</b>.</li>
|
|
83
|
+
<li><a href="license.html">License</a>: <b>ProGuard</b> is free, under a GPL
|
|
84
|
+
license.</li>
|
|
85
|
+
<li><a href="downloads.html">Downloads</a>: download the <b>ProGuard</b>
|
|
86
|
+
package yourself.</li>
|
|
87
|
+
<li><a href="feedback.html">Feedback</a>: tell me about your experiences, or
|
|
88
|
+
learn from others on our forums.</li>
|
|
89
|
+
<li><a href="acknowledgements.html">Acknowledgements</a>: people who have been
|
|
90
|
+
helpful.</li>
|
|
91
|
+
<li><a href="alternatives.html">Alternatives</a>: other Java obfuscators,
|
|
92
|
+
optimizers, and shrinkers.</li>
|
|
93
|
+
</ul>
|
|
94
|
+
|
|
95
|
+
<hr />
|
|
96
|
+
<noscript><div><a target="_top" href="index.html" class="button">Show menu</a></div></noscript>
|
|
97
|
+
<address>
|
|
98
|
+
Copyright © 2002-2011
|
|
99
|
+
<a target="other" href="http://www.lafortune.eu/">Eric Lafortune</a>.
|
|
100
|
+
</address>
|
|
101
|
+
</body>
|
|
102
|
+
</html>
|
|
@@ -0,0 +1,634 @@
|
|
|
1
|
+
<!doctype html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
|
|
2
|
+
<html>
|
|
3
|
+
<head>
|
|
4
|
+
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
|
|
5
|
+
<meta http-equiv="content-style-type" content="text/css">
|
|
6
|
+
<link rel="stylesheet" type="text/css" href="style.css">
|
|
7
|
+
<title>Ant Task</title>
|
|
8
|
+
<script type="text/javascript" language="JavaScript">
|
|
9
|
+
<!--
|
|
10
|
+
if (window.self==window.top)
|
|
11
|
+
window.top.location.replace("../index.html#"+window.location.pathname+window.location.hash);
|
|
12
|
+
else {
|
|
13
|
+
var hash="#"+window.location.pathname.replace(window.top.location.pathname.replace("index.html", ""), "");
|
|
14
|
+
if (window.top.location.hash!=hash)
|
|
15
|
+
window.top.location.hash=hash;
|
|
16
|
+
}
|
|
17
|
+
//-->
|
|
18
|
+
</script>
|
|
19
|
+
</head>
|
|
20
|
+
<body>
|
|
21
|
+
|
|
22
|
+
<h2>Ant Task</h2>
|
|
23
|
+
|
|
24
|
+
<b>ProGuard</b> can be run as a task in the Java-based build tool Ant (version
|
|
25
|
+
1.6.0 or higher).
|
|
26
|
+
<p>
|
|
27
|
+
|
|
28
|
+
Before you can use the <code>proguard</code> task, you have to tell Ant about
|
|
29
|
+
this new task. The easiest way is to add the following line to your
|
|
30
|
+
<code>build.xml</code> file:
|
|
31
|
+
<p>
|
|
32
|
+
|
|
33
|
+
<pre>
|
|
34
|
+
<taskdef resource="proguard/ant/task.properties"
|
|
35
|
+
classpath="/usr/local/java/proguard/lib/proguard.jar" />
|
|
36
|
+
</pre>
|
|
37
|
+
<p>
|
|
38
|
+
|
|
39
|
+
Please make sure the class path is set correctly for your system.
|
|
40
|
+
<p>
|
|
41
|
+
|
|
42
|
+
There are three ways to configure the ProGuard task: using an external
|
|
43
|
+
configuration file, using embedded ProGuard configuration options, or using
|
|
44
|
+
the equivalent XML configuration tags. These three ways can be combined,
|
|
45
|
+
depending on practical circumstances and personal preference.
|
|
46
|
+
<p>
|
|
47
|
+
|
|
48
|
+
<h3>1. An external ProGuard configuration file</h3>
|
|
49
|
+
|
|
50
|
+
The simplest way to use the ProGuard task in an Ant build file is to keep your
|
|
51
|
+
ProGuard configuration file, and include it from Ant. You can include your
|
|
52
|
+
ProGuard configuration file by setting
|
|
53
|
+
the <a href="#configuration_attribute"><code>configuration</code></a>
|
|
54
|
+
attribute of your
|
|
55
|
+
<code>proguard</code> task. Your ant build file will then look like this:
|
|
56
|
+
<p>
|
|
57
|
+
|
|
58
|
+
<pre>
|
|
59
|
+
<taskdef resource="proguard/ant/task.properties"
|
|
60
|
+
classpath="/usr/local/java/proguard/lib/proguard.jar" />
|
|
61
|
+
<proguard configuration="myconfigfile.pro"/>
|
|
62
|
+
</pre>
|
|
63
|
+
<p>
|
|
64
|
+
|
|
65
|
+
This is a convenient option if you prefer ProGuard's configuration style over
|
|
66
|
+
XML, if you want to keep your build file small, or if you have to share your
|
|
67
|
+
configuration with developers who don't use Ant.
|
|
68
|
+
<p>
|
|
69
|
+
|
|
70
|
+
<h3>2. Embedded ProGuard configuration options</h3>
|
|
71
|
+
|
|
72
|
+
Instead of keeping an external ProGuard configuration file, you can also copy
|
|
73
|
+
the contents of the file into the nested text of the <code>proguard</code> task
|
|
74
|
+
(the PCDATA area). Your Ant build file will then look like this:
|
|
75
|
+
<p>
|
|
76
|
+
|
|
77
|
+
<pre>
|
|
78
|
+
<taskdef resource="proguard/ant/task.properties"
|
|
79
|
+
classpath="/usr/local/java/proguard/lib/proguard.jar" />
|
|
80
|
+
<proguard>
|
|
81
|
+
-libraryjars ${java.home}/lib/rt.jar
|
|
82
|
+
-injars in.jar
|
|
83
|
+
-outjars out.jar
|
|
84
|
+
|
|
85
|
+
-keepclasseswithmembers public class * {
|
|
86
|
+
public static void main(java.lang.String[]);
|
|
87
|
+
}
|
|
88
|
+
</proguard>
|
|
89
|
+
</pre>
|
|
90
|
+
<p>
|
|
91
|
+
|
|
92
|
+
Some minor syntactical changes are required in order to conform with the XML
|
|
93
|
+
standard.
|
|
94
|
+
<p>
|
|
95
|
+
|
|
96
|
+
Firstly, the <code>#</code> character cannot be used for comments in an XML
|
|
97
|
+
file. Comments must be enclosed by an opening <code><!--</code> and a
|
|
98
|
+
closing <code>--></code>. All occurrences of the <code>#</code> character
|
|
99
|
+
can be removed.
|
|
100
|
+
<p>
|
|
101
|
+
|
|
102
|
+
Secondly, the use of <code><</code> and <code>></code> characters would
|
|
103
|
+
upset the structure of the XML build file. Environment variables are now
|
|
104
|
+
enclosed by an opening <code>${</code> and a closing <code>}</code>. This
|
|
105
|
+
syntax also allows you to use Ant properties within the ProGuard
|
|
106
|
+
configuration. Other occurrences of <code><</code> and <code>></code>
|
|
107
|
+
have to be encoded as <code>&lt;</code> and <code>&gt;</code>.
|
|
108
|
+
<p>
|
|
109
|
+
|
|
110
|
+
<h3>3. XML configuration tags</h3>
|
|
111
|
+
|
|
112
|
+
If you really prefer a full-blown XML configuration, you can replace the
|
|
113
|
+
ProGuard configuration options by XML configuration tags. The resulting
|
|
114
|
+
configuration will be equivalent, but much more verbose and difficult to read,
|
|
115
|
+
as XML goes. The remainder of this page presents the supported tags. For a
|
|
116
|
+
more extensive discussion of their meaning, please consult the traditional <a
|
|
117
|
+
href="usage.html">Usage</a> section. You can find some sample configuration
|
|
118
|
+
files in the <code>examples/ant</code> directory of the ProGuard distribution.
|
|
119
|
+
<p>
|
|
120
|
+
|
|
121
|
+
<h2><a name="proguard">Task Attributes and Nested Elements</a></h2>
|
|
122
|
+
|
|
123
|
+
The <code><b><proguard></b></code> task and the
|
|
124
|
+
<code><b><proguardconfiguration></b></code> task can have the following
|
|
125
|
+
attributes (only for <code><proguard></code>) and nested
|
|
126
|
+
elements:
|
|
127
|
+
|
|
128
|
+
<dl>
|
|
129
|
+
|
|
130
|
+
<dt><a name="configuration_attribute"><code><b>configuration</b></code></a>
|
|
131
|
+
= "<i>filename</i>"</dt>
|
|
132
|
+
<dd>Read and merge options from the given ProGuard-style configuration
|
|
133
|
+
file. Note: for reading XML-style configurations, use the <a
|
|
134
|
+
href="#configuration_element"><code>configuration</code></a>
|
|
135
|
+
<i>element</i>.</dd>
|
|
136
|
+
|
|
137
|
+
<dt><a href="usage.html#skipnonpubliclibraryclasses"><code><b>skipnonpubliclibraryclasses</b></code></a>
|
|
138
|
+
= "<i>boolean</i>"
|
|
139
|
+
(default = false)</dt>
|
|
140
|
+
<dd>Ignore non-public library classes.</dd>
|
|
141
|
+
|
|
142
|
+
<dt><a href="usage.html#dontskipnonpubliclibraryclassmembers"><code><b>skipnonpubliclibraryclassmembers</b></code></a>
|
|
143
|
+
= "<i>boolean</i>"
|
|
144
|
+
(default = true)</dt>
|
|
145
|
+
<dd>Ignore package visible library class members.</dd>
|
|
146
|
+
|
|
147
|
+
<dt><a href="usage.html#target"><code><b>target</b></code></a>
|
|
148
|
+
= "<i>version</i>"
|
|
149
|
+
(default = none)</dt>
|
|
150
|
+
<dd>Set the given version number in the processed classes.</dd>
|
|
151
|
+
|
|
152
|
+
<dt><a href="usage.html#forceprocessing"><code><b>forceprocessing</b></code></a>
|
|
153
|
+
= "<i>boolean</i>"
|
|
154
|
+
(default = false)</dt>
|
|
155
|
+
<dd>Process the input, even if the output seems up to date.</dd>
|
|
156
|
+
|
|
157
|
+
<dt><a href="usage.html#printseeds"><code><b>printseeds</b></code></a>
|
|
158
|
+
= "<i>boolean or filename</i>"
|
|
159
|
+
(default = false)</dt>
|
|
160
|
+
<dd>List classes and class members matched by the various <code>keep</code>
|
|
161
|
+
commands, to the standard output or to the given file.</dd>
|
|
162
|
+
|
|
163
|
+
<dt><a href="usage.html#dontshrink"><code><b>shrink</b></code></a>
|
|
164
|
+
= "<i>boolean</i>"
|
|
165
|
+
(default = true)</dt>
|
|
166
|
+
<dd>Shrink the input class files.</dd>
|
|
167
|
+
|
|
168
|
+
<dt><a href="usage.html#printusage"><code><b>printusage</b></code></a>
|
|
169
|
+
= "<i>boolean or filename</i>"
|
|
170
|
+
(default = false)</dt>
|
|
171
|
+
<dd>List dead code of the input class files, to the standard output or to the
|
|
172
|
+
given file.</dd>
|
|
173
|
+
|
|
174
|
+
<dt><a href="usage.html#dontoptimize"><code><b>optimize</b></code></a>
|
|
175
|
+
= "<i>boolean</i>"
|
|
176
|
+
(default = true)</dt>
|
|
177
|
+
<dd>Optimize the input class files.</dd>
|
|
178
|
+
|
|
179
|
+
<dt><a href="usage.html#optimizationpasses"><code><b>optimizationpasses</b></code></a>
|
|
180
|
+
= "<i>n</i>"
|
|
181
|
+
(default = 1)</dt>
|
|
182
|
+
<dd>The number of optimization passes to be performed.</dd>
|
|
183
|
+
|
|
184
|
+
<dt><a href="usage.html#allowaccessmodification"><code><b>allowaccessmodification</b></code></a>
|
|
185
|
+
= "<i>boolean</i>"
|
|
186
|
+
(default = false)</dt>
|
|
187
|
+
<dd>Allow the access modifiers of classes and class members to be modified,
|
|
188
|
+
while optimizing.</dd>
|
|
189
|
+
|
|
190
|
+
<dt><a href="usage.html#mergeinterfacesaggressively"><code><b>mergeinterfacesaggressively</b></code></a>
|
|
191
|
+
= "<i>boolean</i>"
|
|
192
|
+
(default = false)</dt>
|
|
193
|
+
<dd>Allow any interfaces to be merged, while optimizing.</dd>
|
|
194
|
+
|
|
195
|
+
<dt><a href="usage.html#dontobfuscate"><code><b>obfuscate</b></code></a>
|
|
196
|
+
= "<i>boolean</i>"
|
|
197
|
+
(default = true)</dt>
|
|
198
|
+
<dd>Obfuscate the input class files.</dd>
|
|
199
|
+
|
|
200
|
+
<dt><a href="usage.html#printmapping"><code><b>printmapping</b></code></a>
|
|
201
|
+
= "<i>boolean or filename</i>"
|
|
202
|
+
(default = false)</dt>
|
|
203
|
+
<dd>Print the mapping from old names to new names for classes and class members
|
|
204
|
+
that have been renamed, to the standard output or to the given file.</dd>
|
|
205
|
+
|
|
206
|
+
<dt><a href="usage.html#applymapping"><code><b>applymapping</b></code></a>
|
|
207
|
+
= "<i>filename</i>"
|
|
208
|
+
(default = none)</dt>
|
|
209
|
+
<dd>Reuse the given mapping, for incremental obfuscation.</dd>
|
|
210
|
+
|
|
211
|
+
<dt><a href="usage.html#obfuscationdictionary"><code><b>obfuscationdictionary</b></code></a>
|
|
212
|
+
= "<i>filename</i>"
|
|
213
|
+
(default = none)</dt>
|
|
214
|
+
<dd>Use the words in the given text file as obfuscated field names and method
|
|
215
|
+
names.</dd>
|
|
216
|
+
|
|
217
|
+
<dt><a href="usage.html#classobfuscationdictionary"><code><b>classobfuscationdictionary</b></code></a>
|
|
218
|
+
= "<i>filename</i>"
|
|
219
|
+
(default = none)</dt>
|
|
220
|
+
<dd>Use the words in the given text file as obfuscated class names.</dd>
|
|
221
|
+
|
|
222
|
+
<dt><a href="usage.html#packageobfuscationdictionary"><code><b>packageobfuscationdictionary</b></code></a>
|
|
223
|
+
= "<i>filename</i>"
|
|
224
|
+
(default = none)</dt>
|
|
225
|
+
<dd>Use the words in the given text file as obfuscated package names.</dd>
|
|
226
|
+
|
|
227
|
+
<dt><a href="usage.html#overloadaggressively"><code><b>overloadaggressively</b></code></a>
|
|
228
|
+
= "<i>boolean</i>"
|
|
229
|
+
(default = false)</dt>
|
|
230
|
+
<dd>Apply aggressive overloading while obfuscating.</dd>
|
|
231
|
+
|
|
232
|
+
<dt><a href="usage.html#useuniqueclassmembernames"><code><b>useuniqueclassmembernames</b></code></a>
|
|
233
|
+
= "<i>boolean</i>"
|
|
234
|
+
(default = false)</dt>
|
|
235
|
+
<dd>Ensure uniform obfuscated class member names for subsequent incremental
|
|
236
|
+
obfuscation.</dd>
|
|
237
|
+
|
|
238
|
+
<dt><a href="usage.html#dontusemixedcaseclassnames"><code><b>usemixedcaseclassnames</b></code></a>
|
|
239
|
+
= "<i>boolean</i>"
|
|
240
|
+
(default = true)</dt>
|
|
241
|
+
<dd>Generate mixed-case class names while obfuscating.</dd>
|
|
242
|
+
|
|
243
|
+
<dt><a href="usage.html#flattenpackagehierarchy"><code><b>flattenpackagehierarchy</b></code></a>
|
|
244
|
+
= "<i>package_name</i>"
|
|
245
|
+
(default = none)</dt>
|
|
246
|
+
<dd>Repackage all packages that are renamed into the single given parent
|
|
247
|
+
package.</dd>
|
|
248
|
+
|
|
249
|
+
<dt><a href="usage.html#repackageclasses"><code><b>repackageclasses</b></code></a>
|
|
250
|
+
= "<i>package_name</i>"
|
|
251
|
+
(default = none)</dt>
|
|
252
|
+
<dd>Repackage all class files that are renamed into the single given
|
|
253
|
+
package.</dd>
|
|
254
|
+
|
|
255
|
+
<dt><a href="usage.html#keepparameternames"><code><b>keepparameternames</b></code></a>
|
|
256
|
+
= "<i>boolean</i>"
|
|
257
|
+
(default = false)</dt>
|
|
258
|
+
<dd>Keep the parameter names and types of methods that are kept.</dd>
|
|
259
|
+
|
|
260
|
+
<dt><a href="usage.html#renamesourcefileattribute"><code><b>renamesourcefileattribute</b></code></a>
|
|
261
|
+
= "<i>string</i>"
|
|
262
|
+
(default = none)</dt>
|
|
263
|
+
<dd>Put the given constant string in the <code>SourceFile</code>
|
|
264
|
+
attributes.</dd>
|
|
265
|
+
|
|
266
|
+
<dt><a href="usage.html#dontpreverify"><code><b>preverify</b></code></a>
|
|
267
|
+
= "<i>boolean</i>"
|
|
268
|
+
(default = true)</dt>
|
|
269
|
+
<dd>Preverify the processed class files if they are targeted at Java Micro
|
|
270
|
+
Edition or at Java 6 or higher.</dd>
|
|
271
|
+
|
|
272
|
+
<dt><a href="usage.html#microedition"><code><b>microedition</b></code></a>
|
|
273
|
+
= "<i>boolean</i>"
|
|
274
|
+
(default = false)</dt>
|
|
275
|
+
<dd>Targets the processed class files at Java Micro Edition.</dd>
|
|
276
|
+
|
|
277
|
+
<dt><a href="usage.html#verbose"><code><b>verbose</b></code></a>
|
|
278
|
+
= "<i>boolean</i>"
|
|
279
|
+
(default = false)</dt>
|
|
280
|
+
<dd>Write out some more information during processing.</dd>
|
|
281
|
+
|
|
282
|
+
<dt><a href="usage.html#dontnote"><code><b>note</b></code></a>
|
|
283
|
+
= "<i>boolean</i>"
|
|
284
|
+
(default = true)</dt>
|
|
285
|
+
<dd>Print notes about potential mistakes or omissions in the configuration.
|
|
286
|
+
Use the nested element <a href="#dontnote">dontnote</a> for more
|
|
287
|
+
fine-grained control.</dd>
|
|
288
|
+
|
|
289
|
+
<dt><a href="usage.html#dontwarn"><code><b>warn</b></code></a>
|
|
290
|
+
= "<i>boolean</i>"
|
|
291
|
+
(default = true)</dt>
|
|
292
|
+
<dd>Print warnings about unresolved references. Use the nested
|
|
293
|
+
element <a href="#dontwarn">dontwarn</a> for more fine-grained
|
|
294
|
+
control. <i>Only use this option if you know what you're doing!</i></dd>
|
|
295
|
+
|
|
296
|
+
<dt><a href="usage.html#ignorewarnings"><code><b>ignorewarnings</b></code></a>
|
|
297
|
+
= "<i>boolean</i>"
|
|
298
|
+
(default = false)</dt>
|
|
299
|
+
<dd>Print warnings about unresolved references, but continue processing
|
|
300
|
+
anyhow. <i>Only use this option if you know what you're doing!</i></dd>
|
|
301
|
+
|
|
302
|
+
<dt><a href="usage.html#printconfiguration"><code><b>printconfiguration</b></code></a>
|
|
303
|
+
= "<i>boolean or filename</i>"
|
|
304
|
+
(default = false)</dt>
|
|
305
|
+
<dd>Write out the entire configuration in traditional ProGuard style, to the
|
|
306
|
+
standard output or to the given file. Useful to replace unreadable
|
|
307
|
+
XML configurations.</dd>
|
|
308
|
+
|
|
309
|
+
<dt><a href="usage.html#dump"><code><b>dump</b></code></a>
|
|
310
|
+
= "<i>boolean or filename</i>"
|
|
311
|
+
(default = false)</dt>
|
|
312
|
+
<dd>Write out the internal structure of the processed class files, to the
|
|
313
|
+
standard output or to the given file.</dd>
|
|
314
|
+
|
|
315
|
+
<dt><a href="usage.html#injars"><code><b><injar</b></code></a>
|
|
316
|
+
<a href="#classpath"><i>class_path</i></a>
|
|
317
|
+
<code><b>/></b></code></dt>
|
|
318
|
+
<dd>Specifies the program jars (or wars, ears, zips, or directories).</dd>
|
|
319
|
+
|
|
320
|
+
<dt><a href="usage.html#outjars"><code><b><outjar</b></code></a>
|
|
321
|
+
<a href="#classpath"><i>class_path</i></a>
|
|
322
|
+
<code><b>/></b></code></dt>
|
|
323
|
+
<dd>Specifies the name of the output jars (or wars, ears, zips, or
|
|
324
|
+
directories).</dd>
|
|
325
|
+
|
|
326
|
+
<dt><a href="usage.html#libraryjars"><code><b><libraryjar</b></code></a>
|
|
327
|
+
<a href="#classpath"><i>class_path</i></a>
|
|
328
|
+
<code><b>/></b></code></dt>
|
|
329
|
+
<dd>Specifies the library jars (or wars, ears, zips, or directories).</dd>
|
|
330
|
+
|
|
331
|
+
<dt><a href="usage.html#keepdirectories"><code><b><keepdirectory name = </b></code></a>"<i>directory_name</i>"
|
|
332
|
+
<code><b>/></b></code><br/>
|
|
333
|
+
<a href="usage.html#keepdirectories"><code><b><keepdirectories filter = </b></code></a>"<a href="usage.html#filefilters"><i>directory_filter</i></a>"
|
|
334
|
+
<code><b>/></b></code></dt>
|
|
335
|
+
<dd>Keep the specified directories in the output jars (or wars, ears, zips, or
|
|
336
|
+
directories).</dd>
|
|
337
|
+
|
|
338
|
+
<dt><a href="usage.html#keep"><code><b><keep</b></code></a>
|
|
339
|
+
<a href="#keepmodifier"><i>modifiers</i></a>
|
|
340
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
341
|
+
<code><b>></b></code>
|
|
342
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
343
|
+
<code><b></keep></b></code></dt>
|
|
344
|
+
<dd>Preserve the specified classes <i>and</i> class members.</dd>
|
|
345
|
+
|
|
346
|
+
<dt><a href="usage.html#keepclassmembers"><code><b><keepclassmembers</b></code></a>
|
|
347
|
+
<a href="#keepmodifier"><i>modifiers</i></a>
|
|
348
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
349
|
+
<code><b>></b></code>
|
|
350
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
351
|
+
<code><b></keepclassmembers></b></code></dt>
|
|
352
|
+
<dd>Preserve the specified class members, if their classes are preserved as
|
|
353
|
+
well.</dd>
|
|
354
|
+
|
|
355
|
+
<dt><a href="usage.html#keepclasseswithmembers"><code><b><keepclasseswithmembers</b></code></a>
|
|
356
|
+
<a href="#keepmodifier"><i>modifiers</i></a>
|
|
357
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
358
|
+
<code><b>></b></code>
|
|
359
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
360
|
+
<code><b></keepclasseswithmembers></b></code></dt>
|
|
361
|
+
<dd>Preserve the specified classes <i>and</i> class members, if all of the
|
|
362
|
+
specified class members are present.</dd>
|
|
363
|
+
|
|
364
|
+
<dt><a href="usage.html#keepnames"><code><b><keepnames</b></code></a>
|
|
365
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
366
|
+
<code><b>></b></code>
|
|
367
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
368
|
+
<code><b></keepnames></b></code></dt>
|
|
369
|
+
<dd>Preserve the names of the specified classes <i>and</i> class members (if
|
|
370
|
+
they aren't removed in the shrinking step).</dd>
|
|
371
|
+
|
|
372
|
+
<dt><a href="usage.html#keepclassmembernames"><code><b><keepclassmembernames</b></code></a>
|
|
373
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
374
|
+
<code><b>></b></code>
|
|
375
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
376
|
+
<code><b></keepclassmembernames></b></code></dt>
|
|
377
|
+
<dd>Preserve the names of the specified class members (if they aren't removed
|
|
378
|
+
in the shrinking step).</dd>
|
|
379
|
+
|
|
380
|
+
<dt><a href="usage.html#keepclasseswithmembernames"><code><b><keepclasseswithmembernames</b></code></a>
|
|
381
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
382
|
+
<code><b>></b></code>
|
|
383
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
384
|
+
<code><b></keepclasseswithmembernames></b></code></dt>
|
|
385
|
+
<dd>Preserve the names of the specified classes <i>and</i> class members, if
|
|
386
|
+
all of the specified class members are present (after the shrinking
|
|
387
|
+
step).</dd>
|
|
388
|
+
|
|
389
|
+
<dt><a href="usage.html#whyareyoukeeping"><code><b><whyareyoukeeping</b></code></a>
|
|
390
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
391
|
+
<code><b>></b></code>
|
|
392
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
393
|
+
<code><b></whyareyoukeeping></b></code></dt>
|
|
394
|
+
<dd>Print details on why the given classes and class members are being kept in
|
|
395
|
+
the shrinking step.</dd>
|
|
396
|
+
|
|
397
|
+
<dt><a href="usage.html#assumenosideeffects"><code><b><assumenosideeffects</b></code></a>
|
|
398
|
+
<a href="#classspecification"><i>class_specification</i></a>
|
|
399
|
+
<code><b>></b></code>
|
|
400
|
+
<a href="#classmemberspecification"><i>class_member_specifications</i></a>
|
|
401
|
+
<code><b></assumenosideeffects></b></code></dt>
|
|
402
|
+
<dd>Assume that the specified methods don't have any side effects, while
|
|
403
|
+
optimizing. <i>Only use this option if you know what you're
|
|
404
|
+
doing!</i></dd>
|
|
405
|
+
|
|
406
|
+
<dt><a href="usage.html#optimizations"><code><b><optimization name = </b></code></a>"<a href="optimizations.html"><i>optimization_name</i></a>"
|
|
407
|
+
<code><b>/></b></code><br/>
|
|
408
|
+
<a href="usage.html#optimizations"><code><b><optimizations filter = </b></code></a>""<a href="optimizations.html"><i>optimization_filter</i></a>"
|
|
409
|
+
<code><b>/></b></code></dt>
|
|
410
|
+
<dd>Perform only the specified optimizations.</dd>
|
|
411
|
+
|
|
412
|
+
<dt><a href="usage.html#keeppackagenames"><code><b><keeppackagename name = </b></code></a>"<i>package_name</i>"
|
|
413
|
+
<code><b>/></b></code><br/>
|
|
414
|
+
<a href="usage.html#keeppackagenames"><code><b><keeppackagenames filter = </b></code></a>"<a href="usage.html#filters"><i>package_filter</i></a>"
|
|
415
|
+
<code><b>/></b></code></dt>
|
|
416
|
+
<dd>Keep the specified package names from being obfuscated. If no name is
|
|
417
|
+
given, all package names are preserved.</dd>
|
|
418
|
+
|
|
419
|
+
<dt><a href="usage.html#keepattributes"><code><b><keepattribute name = </b></code></a>"<i>attribute_name</i>"
|
|
420
|
+
<code><b>/></b></code><br/>
|
|
421
|
+
<a href="usage.html#keepattributes"><code><b><keepattributes filter = </b></code></a>"<a href="usage.html#filters"><i>attribute_filter</i></a>"
|
|
422
|
+
<code><b>/></b></code></dt>
|
|
423
|
+
<dd>Preserve the specified optional Java bytecode attributes, with optional
|
|
424
|
+
wildcards. If no name is given, all attributes are preserved.</dd>
|
|
425
|
+
|
|
426
|
+
<dt><a href="usage.html#adaptclassstrings"><code><b><adaptclassstrings filter = </b></code></a>"<a href="usage.html#filters"><i>class_filter</i></a>"
|
|
427
|
+
<code><b>/></b></code></dt>
|
|
428
|
+
<dd>Adapt string constants in the specified classes, based on the obfuscated
|
|
429
|
+
names of any corresponding classes.</dd>
|
|
430
|
+
|
|
431
|
+
<dt><a href="usage.html#adaptresourcefilenames"><code><b><adaptresourcefilenames filter = </b></code></a>"<a href="usage.html#filefilters"><i>file_filter</i></a>"
|
|
432
|
+
<code><b>/></b></code></dt>
|
|
433
|
+
<dd>Rename the specified resource files, based on the obfuscated names of the
|
|
434
|
+
corresponding class files.</dd>
|
|
435
|
+
|
|
436
|
+
<dt><a href="usage.html#adaptresourcefilecontents"><code><b><adaptresourcefilecontents filter = </b></code></a>"<a href="usage.html#filefilters"><i>file_filter</i></a>"
|
|
437
|
+
<code><b>/></b></code></dt>
|
|
438
|
+
<dd>Update the contents of the specified resource files, based on the
|
|
439
|
+
obfuscated names of the processed classes.</dd>
|
|
440
|
+
|
|
441
|
+
<dt><a name="dontnote" />
|
|
442
|
+
<a href="usage.html#dontnote"><code><b><dontnote filter = </b></code></a>"<a href="usage.html#filters"><i>class_filter</i></a>"
|
|
443
|
+
<code><b>/></b></code></dt>
|
|
444
|
+
<dd>Don't print notes about classes matching the specified class name
|
|
445
|
+
filter.</dd>
|
|
446
|
+
|
|
447
|
+
<dt><a name="dontwarn" />
|
|
448
|
+
<a href="usage.html#dontwarn"><code><b><dontwarn filter = </b></code></a>"<a href="usage.html#filters"><i>class_filter</i></a>"
|
|
449
|
+
<code><b>/></b></code></dt>
|
|
450
|
+
<dd>Don't print warnings about classes matching the specified class name
|
|
451
|
+
filter. <i>Only use this option if you know what you're doing!</i></dd>
|
|
452
|
+
|
|
453
|
+
<dt><a name="configuration_element"><code><b><configuration refid = </b></code></a>"<i>ref_id</i>"
|
|
454
|
+
<code><b>/></b></code></dt>
|
|
455
|
+
<dd>Includes the configuration specified in the
|
|
456
|
+
<code><proguardconfiguration></code> task (or
|
|
457
|
+
<code><proguard></code> task) with the attribute <code>id</code> =
|
|
458
|
+
"<i>ref_id</i>". Note that only the nested elements of this configuration
|
|
459
|
+
are considered, not the attributes. Also note: for reading ProGuard-style
|
|
460
|
+
configuration files, use the <a
|
|
461
|
+
href="#configuration_attribute"><code>configuration</code></a>
|
|
462
|
+
<i>attribute</i>.</dd>
|
|
463
|
+
|
|
464
|
+
</dl>
|
|
465
|
+
|
|
466
|
+
<h2><a name="classpath">Class Path Attributes and Nested Elements</a></h2>
|
|
467
|
+
|
|
468
|
+
The jar tags are path tags, so they can have any of the path attributes (or
|
|
469
|
+
nested elements). The most common attributes are:
|
|
470
|
+
|
|
471
|
+
<dl>
|
|
472
|
+
|
|
473
|
+
<dt><code><b>path</b></code> = "<i>path</i>"</dt>
|
|
474
|
+
<dd>The names of the jars (or wars, ears, zips, or directories), separated by
|
|
475
|
+
the path separator.</dd>
|
|
476
|
+
|
|
477
|
+
<dt><code><b>location</b></code> = "<i>name</i>" (or <code><b>file</b></code>
|
|
478
|
+
= "<i>name</i>", or <code><b>dir</b></code> = "<i>name</i>", or
|
|
479
|
+
<code><b>name</b></code> = "<i>name</i>")</dt>
|
|
480
|
+
<dd>Alternatively, the name of a single jar (or war, ear, zip, or
|
|
481
|
+
directory).</dd>
|
|
482
|
+
|
|
483
|
+
<dt><code><b>refid</b></code> = "<i>ref_id</i>"</dt>
|
|
484
|
+
<dd>Alternatively, a reference to the path or file set with the attribute
|
|
485
|
+
<code>id</code> = "<i>ref_id</i>".</dd>
|
|
486
|
+
|
|
487
|
+
</dl>
|
|
488
|
+
|
|
489
|
+
In addition, the jar tags can have ProGuard-style filter attributes:
|
|
490
|
+
|
|
491
|
+
<dl>
|
|
492
|
+
|
|
493
|
+
<dt><code><b>filter</b></code> =
|
|
494
|
+
"<a href="usage.html#filefilters"><i>file_filter</i></a>"</dt>
|
|
495
|
+
<dd>An optional filter for all class file names and resource file names that
|
|
496
|
+
are encountered.</dd>
|
|
497
|
+
|
|
498
|
+
<dt><code><b>jarfilter</b></code> =
|
|
499
|
+
"<a href="usage.html#filefilters"><i>file_filter</i></a>"</dt>
|
|
500
|
+
<dd>An optional filter for all jar names that are encountered.</dd>
|
|
501
|
+
|
|
502
|
+
<dt><code><b>warfilter</b></code> =
|
|
503
|
+
"<a href="usage.html#filefilters"><i>file_filter</i></a>"</dt>
|
|
504
|
+
<dd>An optional filter for all war names that are encountered.</dd>
|
|
505
|
+
|
|
506
|
+
<dt><code><b>earfilter</b></code> =
|
|
507
|
+
"<a href="usage.html#filefilters"><i>file_filter</i></a>"</dt>
|
|
508
|
+
<dd>An optional filter for all ear names that are encountered.</dd>
|
|
509
|
+
|
|
510
|
+
<dt><code><b>zipfilter</b></code> =
|
|
511
|
+
"<a href="usage.html#filefilters"><i>file_filter</i></a>"</dt>
|
|
512
|
+
<dd>An optional filter for all zip names that are encountered.</dd>
|
|
513
|
+
|
|
514
|
+
</dl>
|
|
515
|
+
|
|
516
|
+
<h2><a name="keepmodifier">Keep Modifier Attributes</a></h2>
|
|
517
|
+
|
|
518
|
+
The keep tags can have the following <i>modifier</i> attributes:
|
|
519
|
+
|
|
520
|
+
<dl>
|
|
521
|
+
|
|
522
|
+
<dt><a href="usage.html#allowshrinking"><code><b>allowshrinking</b></code></a>
|
|
523
|
+
= "<i>boolean</i>"
|
|
524
|
+
(default = false)</dt>
|
|
525
|
+
<dd>Specifies whether the entry points specified in the keep tag may be
|
|
526
|
+
shrunk.</dd>
|
|
527
|
+
|
|
528
|
+
<dt><a href="usage.html#allowoptimization"><code><b>allowoptimization</b></code></a>
|
|
529
|
+
= "<i>boolean</i>"
|
|
530
|
+
(default = false)</dt>
|
|
531
|
+
<dd>Specifies whether the entry points specified in the keep tag may be
|
|
532
|
+
optimized.</dd>
|
|
533
|
+
|
|
534
|
+
<dt><a href="usage.html#allowobfuscation"><code><b>allowobfuscation</b></code></a>
|
|
535
|
+
= "<i>boolean</i>"
|
|
536
|
+
(default = false)</dt>
|
|
537
|
+
<dd>Specifies whether the entry points specified in the keep tag may be
|
|
538
|
+
obfuscated.</dd>
|
|
539
|
+
|
|
540
|
+
</dl>
|
|
541
|
+
|
|
542
|
+
<h2><a name="classspecification">Class Specification Attributes and Nested Elements</a></h2>
|
|
543
|
+
|
|
544
|
+
The keep tags can have the following <i>class_specification</i> attributes and
|
|
545
|
+
<i>class_member_specifications</i> nested elements:
|
|
546
|
+
|
|
547
|
+
<dl>
|
|
548
|
+
|
|
549
|
+
<dt><code><b>access</b></code> = "<i>access_modifiers</i>"</dt>
|
|
550
|
+
<dd>The optional access modifiers of the class. Any space-separated list of
|
|
551
|
+
"public", "final", and "abstract", with optional negators "!".</dd>
|
|
552
|
+
|
|
553
|
+
<dt><code><b>annotation</b></code> = "<i>annotation_name</i>"</dt>
|
|
554
|
+
<dd>The optional fully qualified name of an annotation of the class, with
|
|
555
|
+
optional wildcards.</dd>
|
|
556
|
+
|
|
557
|
+
<dt><code><b>type</b></code> = "<i>type</i>"</dt>
|
|
558
|
+
<dd>The optional type of the class: one of "class", "interface", or
|
|
559
|
+
"!interface".</dd>
|
|
560
|
+
|
|
561
|
+
<dt><code><b>name</b></code> = "<i>class_name</i>"</dt>
|
|
562
|
+
<dd>The optional fully qualified name of the class, with optional
|
|
563
|
+
wildcards.</dd>
|
|
564
|
+
|
|
565
|
+
<dt><code><b>extendsannotation</b></code> = "<i>annotation_name</i>"</dt>
|
|
566
|
+
<dd>The optional fully qualified name of an annotation of the the class that
|
|
567
|
+
the specified classes must extend, with optional wildcards.</dd>
|
|
568
|
+
|
|
569
|
+
<dt><code><b>extends</b></code> = "<i>class_name</i>"</dt>
|
|
570
|
+
<dd>The optional fully qualified name of the class the specified classes
|
|
571
|
+
must extend, with optional wildcards.</dd>
|
|
572
|
+
|
|
573
|
+
<dt><code><b>implements</b></code> = "<i>class_name</i>"</dt>
|
|
574
|
+
<dd>The optional fully qualified name of the class the specified classes
|
|
575
|
+
must implement, with optional wildcards.</dd>
|
|
576
|
+
|
|
577
|
+
<dt><code><b><field</b></code>
|
|
578
|
+
<a href="#classmemberspecification"><i>class_member_specification</i></a>
|
|
579
|
+
<code><b>/></b></code></dt>
|
|
580
|
+
<dd>Specifies a field.</dd>
|
|
581
|
+
|
|
582
|
+
<dt><code><b><method</b></code>
|
|
583
|
+
<a href="#classmemberspecification"><i>class_member_specification</i></a>
|
|
584
|
+
<code><b>/></b></code></dt>
|
|
585
|
+
<dd>Specifies a method.</dd>
|
|
586
|
+
|
|
587
|
+
<dt><code><b><constructor</b></code>
|
|
588
|
+
<a href="#classmemberspecification"><i>class_member_specification</i></a>
|
|
589
|
+
<code><b>/></b></code></dt>
|
|
590
|
+
<dd>Specifies a constructor.</dd>
|
|
591
|
+
|
|
592
|
+
</dl>
|
|
593
|
+
|
|
594
|
+
<h2><a name="classmemberspecification">Class Member Specification Attributes</a></h2>
|
|
595
|
+
|
|
596
|
+
The class member tags can have the following <i>class_member_specification</i>
|
|
597
|
+
attributes:
|
|
598
|
+
|
|
599
|
+
<dl>
|
|
600
|
+
|
|
601
|
+
<dt><code><b>access</b></code> = "<i>access_modifiers</i>"</dt>
|
|
602
|
+
<dd>The optional access modifiers of the class. Any space-separated list of
|
|
603
|
+
"public", "protected", "private", "static", etc., with optional negators
|
|
604
|
+
"!".</dd>
|
|
605
|
+
|
|
606
|
+
<dt><code><b>annotation</b></code> = "<i>annotation_name</i>"</dt>
|
|
607
|
+
<dd>The optional fully qualified name of an annotation of the class member,
|
|
608
|
+
with optional wildcards.</dd>
|
|
609
|
+
|
|
610
|
+
<dt><code><b>type</b></code> = "<i>type</i>"</dt>
|
|
611
|
+
<dd>The optional fully qualified type of the class member, with optional
|
|
612
|
+
wildcards. Not applicable for constructors, but required for methods for
|
|
613
|
+
which the <code>parameters</code> attribute is specified.</dd>
|
|
614
|
+
|
|
615
|
+
<dt><code><b>name</b></code> = "<i>name</i>"</dt>
|
|
616
|
+
<dd>The optional name of the class member, with optional wildcards. Not
|
|
617
|
+
applicable for constructors.</dd>
|
|
618
|
+
|
|
619
|
+
<dt><code><b>parameters</b></code> = "<i>parameters</i>"</dt>
|
|
620
|
+
<dd>The optional comma-separated list of fully qualified method parameters,
|
|
621
|
+
with optional wildcards. Not applicable for fields, but required for
|
|
622
|
+
constructors, and for methods for which the <code>type</code> attribute is
|
|
623
|
+
specified.</dd>
|
|
624
|
+
|
|
625
|
+
</dl>
|
|
626
|
+
|
|
627
|
+
<hr />
|
|
628
|
+
<noscript><div><a target="_top" href="../index.html" class="button">Show menu</a></div></noscript>
|
|
629
|
+
<address>
|
|
630
|
+
Copyright © 2002-2011
|
|
631
|
+
<a target="other" href="http://www.lafortune.eu/">Eric Lafortune</a>.
|
|
632
|
+
</address>
|
|
633
|
+
</body>
|
|
634
|
+
</html>
|