diff options
Diffstat (limited to 'examples/ant/library.xml')
-rw-r--r-- | examples/ant/library.xml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/ant/library.xml b/examples/ant/library.xml index d87bd16..37ceb1a 100644 --- a/examples/ant/library.xml +++ b/examples/ant/library.xml @@ -47,13 +47,13 @@ <!-- Preserve all native method names and the names of their classes. --> - <keepclasseswithmembernames> + <keepclasseswithmembernames includedescriptorclasses="true"> <method access="native" /> </keepclasseswithmembernames> <!-- Preserve the methods that are required in all enumeration classes. --> - <keepclassmembers extends="java.lang.Enum"> + <keepclassmembers allowoptimization="true" type="enum"> <method access="public static" type="**[]" name="values" |