-
guich added the native2.zip file.
2009-05-14 16:00:03 UTC in SuperWaba
-
guich created the VM Sources file release.
2009-05-14 15:54:11 UTC in SuperWaba
-
guich created the VM sources file package.
2009-05-14 15:51:17 UTC in SuperWaba
-
guich added the builders.zip file.
2009-05-14 15:35:22 UTC in SuperWaba
-
guich created the Projects for all platforms file release.
2009-05-14 15:17:29 UTC in SuperWaba
-
guich created the Build Projects file package.
2009-05-14 15:17:02 UTC in SuperWaba
-
Thanks, it worked now.
2009-03-12 15:04:42 UTC in ProGuard Java Optimizer and Obfuscator
-
Hi,
This is my ant task.
<proguard warn="false" shrink="false" allowaccessmodification="false" optimize="false" overloadaggressively="false" obfuscate="true" verbose="true" ignorewarnings="true" printmapping="${dist}/device_${versionStr}.map">
<keep name="*"><field...
2009-03-09 15:42:56 UTC in ProGuard Java Optimizer and Obfuscator
-
Eric,
The fileRef field *is* package access. In the sample i provided, the class is public, the path is protected and fileRef is package access.
So, the path was correctly kept by ProGuard, but fileRef was obfuscated. I want to keep fileRef not obfuscated.
My suggestion: create a keyword named "package" to keep so it can keep package-access fields. Currently, Proguard does not...
2009-03-05 17:57:01 UTC in ProGuard Java Optimizer and Obfuscator
-
Hi,
That didn't work. E.G.:
public class File extends Stream
{
protected String path;
Object fileRef;
totalcross.io.File -> totalcross.io.File:
java.lang.String path -> path
java.lang.Object fileRef -> a
fileRef is still being obfuscated. Adding "!protected" also leads to the same result.
Why i need this: i access most package access field by...
2009-03-04 19:06:17 UTC in ProGuard Java Optimizer and Obfuscator