Tagged Questions

1
vote
1answer
31 views

having problem with proguard trying to obfuscate code that uses Spring

My project uses spring for IoC. After obfuscation the application context fails to find the bean since it's class name has been changed. I tried to use -adaptresourcefilecontents o …
3
votes
6answers
723 views

Java Obfuscators

Hi all, I'm looking for a good java obfuscator. I've done initial research into the following java obfuscators: proguard, yguard, retroguard, dasho, allatori, jshrink, smokescree …
0
votes
2answers
34 views

java proguard: library doesnt work after optimization

hello, i am optimizing a jar with proguard, but it crashes after optimization. here is my proguard task: <proguard> -injars ${dist}/${jarname} -outja …
-1
votes
1answer
81 views

Obfuscation of war file

Can anybdy tell me how to obfuscate war file using proguard.I am getting error while generating obfuscated war file.
0
votes
1answer
44 views

Proguard obfuscate Fat jar

My application jar contains classes from swing-layout.jar which contains free layout manager for java 1.5. During obfuscation process i get a lot of warnings such as [proguard] …
0
votes
3answers
446 views

Trouble making obfuscation

I'm using Antenna to build, pack and obfuscate a j2me app. Building and packing works fine. The project uses a 3rd party jar that is already obfuscated except by some interfaces. …
0
votes
1answer
137 views

Exposing inner classes when obfuscating with ProGuard

I'm obfuscating a library with ProGuard using the Ant task. I'm keeping particular class names and their method names when they have a particular annotation (@ApiAll) and I'm requ …
1
vote
1answer
304 views

Maven, Proguard and assembly issues

I'm trying to get Maven working with ProGuard. What I want to achieve is the following: Run ProGuard over my source files and produce obfuscated classes Create a manifest file …
1
vote
1answer
87 views

Obfuscating method with throws clause

I'm using ProGuard to obfuscate my code. My project is comprised of a few modules, each obfuscated independently. One library includes an interface; public interface IFace { …
1
vote
2answers
366 views

How to obfuscate an OSGi bundle with ProGuard?

Hi all! I am currently trying to obfuscate my Eclipse RCP application with ProGuard. The problem is that it obfuscates the package names (the class My.Package.Class turns into some …
3
votes
2answers
906 views

Java obfuscation - ProGuard/yGuard/other?

This is along similar lines as these recent questions: http://stackoverflow.com/questions/93290/best-java-obfuscation-application-for-size-reduction http://stackoverflow.com/quest …