标签:des android style http io color ar os java
java -jar proguard.jar options ...
You can find the ProGuard jar in the lib directory of the ProGuard distribution. Alternatively, the bin directory contains some short Linux and Windows scripts containing this command. Typically, you‘ll put most options in a configuration file (say, myconfig.pro ), and just call:java -jar proguard.jar @myconfig.pro
You can combine command line options and options from configuration files. For instance:java -jar proguard.jar @myconfig.pro -verbose
You can add comments in a configuration file, starting with a # character and continuing until the end of the line.
Extra whitespace between words and delimiters is ignored. File names with spaces or special characters should be quoted with single or double quotes.
Options can be grouped arbitrarily in arguments on the command line and in lines in configuration files. This means that you can quote arbitrary sections of command line options, to avoid shell expansion of special characters, for instance.
The order of the options is generally irrelevant. For quick experiments, you can abbreviate them to their first unique characters.
The sections below provide more details:
You must avoid letting the output files overwrite any input files. For better readability, class path entries can be specified using multiple -outjars options. Without any -outjarsoptions, no jars will be written.
-libraryjars class_pathSpecifies the library jars (or wars, ears, zips, or directories) of the application to be processed. The files in these jars will not be included in the output jars. The specified library jars should at least contain the class files that are extended by application class files. Library class files that are only called needn‘t be present, although their presence can improve the results of the optimization step. The entries in the class path can be filtered, as explained in the filters section. For better readability, class path entries can be specified using multiple -libraryjars options.Please note that the boot path and the class path set for running ProGuard are not considered when looking for library classes. This means that you explicitly have to specify the run-time jar that your code will use. Although this may seem cumbersome, it allows you to process applications targeted at different run-time environments. For example, you can process J2SE applications as well as JME midlets, just by specifying the appropriate run-time jar.
-skipnonpubliclibraryclassesSpecifies to skip non-public classes while reading library jars, to speed up processing and reduce memory usage of ProGuard. By default, ProGuard reads non-public and public library classes alike. However, non-public classes are often not relevant, if they don‘t affect the actual program code in the input jars. Ignoring them then speeds up ProGuard, without affecting the output. Unfortunately, some libraries, including recent JSE run-time libraries, contain non-public library classes that are extended by public library classes. You then can‘t use this option. ProGuard will print out warnings if it can‘t find classes due to this option being set. -dontskipnonpubliclibraryclassesSpecifies not to ignore non-public library classes. As of version 4.5, this is the default setting. -dontskipnonpubliclibraryclassmembersSpecifies not to ignore package visible library class members (fields and methods). By default, ProGuard skips these class members while parsing library classes, as program classes will generally not refer to them. Sometimes however, program classes reside in the same packages as library classes, and they do refer to their package visible class members. In those cases, it can be useful to actually read the class members, in order to make sure the processed code remains consistent. -keepdirectories [ directory_filter]Specifies the directories to be kept in the output jars (or wars, ears, or directories). By default, directory entries are removed. This reduces the jar size, but it may be undesirable if the program code tries to find them with constructs like "MyClass.class.getResource("")". If the option is specified without a filter, all directories are kept. With a filter, only matching directories are kept. -target versionSpecifies the version number to be set in the processed class files. The version number can be one of 1.0, 1.1, 1.2, 1.3, 1.4, 1.5 (or just 5), 1.6 (or just 6), or 1.7 (or just 7). By default, the version numbers of the class files are left unchanged. For example, you may want to upgrade class files to Java 6, by changing their version numbers and having them preverified. -forceprocessingSpecifies to process the input, even if the output seems up to date. The up-to-dateness test is based on a comparison of the date stamps of the specified input, output, and configuration files or directories.Specifies classes and class members whose names are to be preserved, if they aren‘t removed in the shrinking phase. For example, you may want to keep all class names of classes that implement the Serializable interface, so that the processed code remains compatible with any originally serialized classes. Classes that aren‘t used at all can still be removed. Only applicable when obfuscating.
-keepclassmembernames class_specificationShort for -keepclassmembers, allowshrinking class_specificationSpecifies class members whose names are to be preserved, if they aren‘t removed in the shrinking phase. For example, you may want to preserve the name of the syntheticclass$ methods when processing a library compiled by JDK 1.2 or older, so obfuscators can detect it again when processing an application that uses the processed library (although ProGuard itself doesn‘t need this). Only applicable when obfuscating.
-keepclasseswithmembernames class_specificationShort for -keepclasseswithmembers, allowshrinking class_specificationSpecifies classes and class members whose names are to be preserved, on the condition that all of the specified class members are present after the shrinking phase. For example, you may want to keep all native method names and the names of their classes, so that the processed code can still link with the native library code. Native methods that aren‘t used at all can still be removed. If a class file is used, but none of its native methods are, its name will still be obfuscated. Only applicable when obfuscating.
-printseeds [ filename]Specifies to exhaustively list classes and class members matched by the various -keep options. The list is printed to the standard output or to the given file. The list can be useful to verify if the intended class members are really found, especially if you‘re using wildcards. For example, you may want to list all the applications or all the applets that you are keeping.Counter-indication: you probably shouldn‘t use this option when processing code that is to be used as a library, since classes and class members that weren‘t designed to be public in the API may become public.
-mergeinterfacesaggressivelySpecifies that interfaces may be merged, even if their implementing classes don‘t implement all interface methods. This can reduce the size of the output by reducing the total number of classes. Note that Java‘s binary compatibility specifications allow such constructs (cfr. The Java Language Specification, Second Edition, Section 13.5.3), even if they are not allowed in the Java language (cfr. The Java Language Specification, Second Edition, Section 8.1.4). Only applicable when optimizing.Counter-indication: setting this option can reduce the performance of the processed code on some JVMs, since advanced just-in-time compilation tends to favor more interfaces with fewer implementing classes. Worse, some JVMs may not be able to handle the resulting code. Notably:
Counter-indication: the resulting class files fall within the Java bytecode specification (cfr. The Java Virtual Machine Specification, Second Edition, first paragraphs of Section 4.5and Section 4.6), even though this kind of overloading is not allowed in the Java language (cfr. The Java Language Specification, Second Edition, Section 8.3 and Section 8.4.7). Still, some tools have problems with it. Notably:
For instance, consider two distinct interfaces containing methods with the same name and signature. Without this option, these methods may get different obfuscated names in a first obfuscation step. If a patch is then added containing a class that implements both interfaces, ProGuard will have to enforce the same method name for both methods in an incremental obfuscation step. The original obfuscated code is changed, in order to keep the resulting code consistent. With this option in the initial obfuscation step, such renaming will never be necessary.
This option is only applicable when obfuscating. In fact, if you are planning on performing incremental obfuscation, you probably want to avoid shrinking and optimization altogether, since these steps could remove or modify parts of your code that are essential for later additions.
-dontusemixedcaseclassnamesSpecifies not to generate mixed-case class names while obfuscating. By default, obfuscated class names can contain a mix of upper-case characters and lower-case characters. This creates perfectly acceptable and usable jars. Only if a jar is unpacked on a platform with a case-insensitive filing system (say, Windows), the unpacking tool may let similarly named class files overwrite each other. Code that self-destructs when it‘s unpacked! Developers who really want to unpack their jars on Windows can use this option to switch off this behavior. Note that the obfuscated jars will become larger as a result. Only applicable when obfuscating. -keeppackagenames [ package_filter]Specifies not obfuscate the given package names. The optional filter is a comma-separated list of package names. Package names can contain ?, *, and ** wildcards, and they can be preceded by the ! negator. Only applicable when obfuscating. -flattenpackagehierarchy [ package_name]Specifies to repackage all packages that are renamed, by moving them into the single given parent package. Without argument or with an empty string (‘‘), the packages are moved into the root package. This option is one example of further obfuscating package names. It can make the processed code smaller and less comprehensible. Only applicable when obfuscating. -repackageclasses [ package_name]Specifies to repackage all class files that are renamed, by moving them into the single given package. Without argument or with an empty string (‘‘), the package is removed completely. This option option overrides the -flattenpackagehierarchy option. It is another example of further obfuscating package names. It can make the processed code even smaller and less comprehensible. Its deprecated name is -defaultpackage. Only applicable when obfuscating.Counter-indication: classes that look for resource files in their package directories will no longer work properly if they are moved elsewhere. When in doubt, just leave the packaging untouched by not using this option.
-keepattributes [ attribute_filter]Specifies any optional attributes to be preserved. The attributes can be specified with one or more -keepattributes directives. The optional filter is a comma-separated list of attribute names. Attribute names can contain ?, *, and ** wildcards, and they can be preceded by the ! negator. Typical optional attributes are Exceptions, Signature, Deprecated,SourceFile, SourceDir, LineNumberTable, LocalVariableTable, LocalVariableTypeTable, Synthetic, EnclosingMethod, RuntimeVisibleAnnotations, RuntimeInvisibleAnnotations, RuntimeVisibleParameterAnnotations,RuntimeInvisibleParameterAnnotations, and AnnotationDefault. The InnerClasses attribute name can be specified as well, referring to the source name part of this attribute. For example, you should at least keep the Exceptions, InnerClasses, and Signature attributes when processing a library. You should also keep the SourceFile and LineNumberTable attributes for producing useful obfuscated stack traces. Finally, you may want to keep annotations if your code depends on them. Only applicable when obfuscating. -keepparameternamesSpecifies to keep the parameter names and types of methods that are kept. This option actually keeps trimmed versions of the debugging attributes LocalVariableTable andLocalVariableTypeTable. It can be useful when processing a library. Some IDEs can use the information to assist developers who use the library, for example with tool tips or autocompletion. Only applicable when obfuscating. -renamesourcefileattribute [ string]Specifies a constant string to be put in the SourceFile attributes (and SourceDir attributes) of the class files. Note that the attribute has to be present to start with, so it also has to be preserved explicitly using the -keepattributes directive. For example, you may want to have your processed libraries and applications produce useful obfuscated stack traces. Only applicable when obfuscating. -adaptclassstrings [ class_filter]Specifies that string constants that correspond to class names should be obfuscated as well. Without a filter, all string constants that correspond to class names are adapted. With a filter, only string constants in classes that match the filter are adapted. For example, if your code contains a large number of hard-coded strings that refer to classes, and you prefer not to keep their names, you may want to use this option. Primarily applicable when obfuscating, although corresponding classes are automatically kept in the shrinking step too. -adaptresourcefilenames [ file_filter]Specifies the resource files to be renamed, based on the obfuscated names of the corresponding class files (if any). Without a filter, all resource files that correspond to class files are renamed. With a filter, only matching files are renamed. For example, see processing resource files. Only applicable when obfuscating. -adaptresourcefilecontents [ file_filter]Specifies the resource files whose contents are to be updated. Any class names mentioned in the resource files are renamed, based on the obfuscated names of the corresponding classes (if any). Without a filter, the contents of all resource files updated. With a filter, only matching files are updated. The resource files are parsed and written using the platform‘s default character set. You can change this default character set by setting the environment variable LANG or the Java system property file.encoding. For an example, see processing resource files. Only applicable when obfuscating.Each input entry can be:
The paths of directly specified class files and resource files is ignored, so class files should generally be part of a jar file, a war file, an ear file, a zip file, or a directory. In addition, the paths of class files should not have any additional directory prefixes inside the archives or directories.
Each output entry can be:
When writing output entries, ProGuard will generally package the results in a sensible way, reconstructing the input entries as much as required. Writing everything to an output directory is the most straightforward option: the output directory will contain a complete reconstruction of the input entries. The packaging can be almost arbitrarily complex though: you could process an entire application, packaged in a zip file along with its documentation, writing it out as a zip file again. The Examples section shows a few ways to restructure output archives.
Files and directories can be specified as discussed in the section on file names below.
In addition, ProGuard provides the possibility to filter the class path entries and their contents, based on their full relative file names. Each class path entry can be followed by up to 5 types of file filters between parentheses, separated by semi-colons:
If fewer than 5 filters are specified, they are assumed to be the latter filters. Any empty filters are ignored. More formally, a filtered class path entry looks like this:
classpathentry([[[[zipfilter;]earfilter;]warfilter;]jarfilter;]filefilter)
Square brackets "[]" mean that their contents are optional.
For example, "rt.jar(java/**.class,javax/**.class)" matches all class files in the java and javax directories inside the rt jar.
For example, "input.jar(!**.gif,images/**)" matches all files in the images directory inside the input jar, except gif files.
Note that the different filters are applied to all corresponding file types, irrespective of their nesting levels in the input; they are orthogonal.
For example, "input.war(lib/**.jar,support/**.jar;**.class,**.gif)" only considers jar files in the lib and support directories in the input war, not any other jar files. It then matches all class files and gif files that are encountered.
The filters allow for an almost infinite number of packaging and repackaging possibilities. The Examples section provides a few more examples for filtering input and output.
The names can contain Java system properties delimited by ‘<‘ and ‘>‘. The system properties are automatically replaced by their respective values.
For example, <java.home>/lib/rt.jar will automatically be expanded to something like /usr/local/java/jdk/jre/lib/rt.jar. Similarly, <user.home> will be expanded to the user‘s home directory, and<user.dir> will be expanded to the current working directory.
Names with special characters like spaces and parentheses must be quoted with single or double quotes. Note that each file name in a list of names has to be quoted individually. Also note that the quotes themselves may need to be escaped when used on the command line, to avoid them being gobbled by the shell.
For example, on the command line, you could use an option like ‘-injars "my program.jar":"/your directory/your program.jar"‘.
? | matches any single character in a file name. |
* | matches any part of a filename not containing the directory separator. |
** | matches any part of a filename, possibly containing any number of directory separators. |
Furthermore, a file name can be preceded by an exclamation mark ‘!‘ to exclude the file name from further attempts to match with subsequent file names.
For example, "!**.gif,images/**" matches all files in the images directory, except gif files.
The Examples section provides a few more examples for filtering input and output.
A filter is a list of comma-separated names that can contain wildcards. Only names that match an item on the list pass the filter. The supported wildcards depend on the type of names for which the filter is being used, but the following wildcards are typical:
? | matches any single character in a name. |
* | matches any part of a name not containing the package separator or directory separator. |
** | matches any part of a name, possibly containing any number of package separators or directory separators. |
For example, "foo,*bar" matches the name foo and all names ending with bar.
Furthermore, a name can be preceded by a negating exclamation mark ‘!‘ to exclude the name from further attempts to match with subsequent names. So, if a name matches an item in the filter, it is accepted or rejected right away, depending on whether the item has a negator. If the name doesn‘t match the item, it is tested against the next item, and so on. It if doesn‘t match any items, it is accepted or rejected, depending on the whether the last item has a negator or not.
For example, "!foobar,*bar" matches all names ending with bar, except foobar.
Keep | From being removed or renamed | From being renamed |
---|---|---|
Classes and class members | -keep | -keepnames |
Class members only | -keepclassmembers | -keepclassmembernames |
Classes and class members, if class members present | -keepclasseswithmembers | -keepclasseswithmembernames |
Each of these -keep options is of course followed by a specification of the classes and class members (fields and methods) to which it should be applied.
If you‘re not sure which option you need, you should probably simply use -keep. It will make sure the specified classes and class members are not removed in the shrinking step, and not renamed in the obfuscation step.
Always remember:
|
The template was designed to look very Java-like, with some extensions for wildcards. To get a feel for the syntax, you should probably look at the examples, but this is an attempt at a complete formal definition:
[@annotationtype] [[!]public|final|abstract|@ ...] [!]interface|class|enum classname [extends|implements [@annotationtype] classname] [{ [@annotationtype] [[!]public|private|protected|static|volatile|transient ...] <fields> | (fieldtype fieldname); [@annotationtype] [[!]public|private|protected|static|synchronized|native|abstract|strictfp ...] <methods> | <init>(argumenttype,...) | classname(argumenttype,...) | (returntype methodname(argumenttype,...)); [@annotationtype] [[!]public|private|protected|static ... ] *; ... }]
Square brackets "[]" mean that their contents are optional. Ellipsis dots "..." mean that any number of the preceding items may be specified. A vertical bar "|" delimits two alternatives. Non-bold parentheses "()" just group parts of the specification that belong together. The indentation tries to clarify the intended meaning, but white-space is irrelevant in actual configuration files.
? | matches any single character in a class name, but not the package separator. For example, "mypackage.Test?" matches "mypackage.Test1" and "mypackage.Test2", but not "mypackage.Test12". |
* | matches any part of a class name not containing the package separator. For example, "mypackage.*Test*" matches "mypackage.Test" and "mypackage.YourTestApplication", but not "mypackage.mysubpackage.MyTest". Or, more generally, "mypackage.*" matches all classes in "mypackage", but not in its subpackages. |
** | matches any part of a class name, possibly containing any number of package separators. For example, "**.Test" matches all Test classes in all packages except the root package. Or, "mypackage.**" matches all classes in "mypackage" and in its subpackages. |
For convenience and for backward compatibility, the class name * refers to any class, irrespective of its package.
<init> | matches any constructor. |
<fields> | matches any field. |
<methods> | matches any method. |
* | matches any field or method. |
Fields and methods may also be specified using regular expressions. Names can contain the following wildcards:
? | matches any single character in a method name. |
* | matches any part of a method name. |
Types in descriptors can contain the following wildcards:
% | matches any primitive type ("boolean", "int", etc, but not "void"). |
? | matches any single character in a class name. |
* | matches any part of a class name not containing the package separator. |
** | matches any part of a class name, possibly containing any number of package separators. |
*** | matches any type (primitive or non-primitive, array or non-array). |
... | matches any number of arguments of any type. |
Note that the ?, *, and ** wildcards will never match primitive types. Furthermore, only the *** wildcards will match array types of any dimension. For example, "** get*()" matches "java.lang.Object getObject()", but not "float getFloat()", nor "java.lang.Object[] getObjects()".
Combining multiple flags is allowed (e.g. public static). It means that both access flags have to be set (e.g. public and static), except when they are conflicting, in which case at least one of them has to be set (e.g. at least public or protected).
ProGuard supports the additional modifiers synthetic, bridge, and varargs, which may be set by compilers.
标签:des android style http io color ar os java
原文地址:http://my.oschina.net/u/552375/blog/340771