Tagged Questions

10
votes
1answer
138 views

How to shrink scala swing library using Proguard?

I tried to shrink and obfuscate my Scala/Java program using Proguard. While I was using only scala-library.jar, everything was fine, but when I add scala-swing.jar to my jars, I get the following: ...
8
votes
3answers
4k 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 ...
7
votes
2answers
2k views

Proguard and reflection in Android

I have just used proguard, but classes I am trying to instantiate via reflection are not working. I have an interface Algorithm I pass classes like this ...
6
votes
1answer
98 views

Can I use serialization with obfuscation?

I wonder if it will work... In my app I have an object that I'm serializing to file, and then I obfuscate the code with the ProGuard and application goes to Market. Then I want to release new version ...
6
votes
2answers
754 views

Android, ProGuard, and keepclasseswithmembernames

A common pattern in ProGuard configs for Android applications is to preserve custom View classes, since they are probably referenced only from layout XML instead of application code. Upon project ...
5
votes
2answers
198 views

Proguard is saying it can't find any classes

I'm using proguard with a spring mvc application and maven. My pom.xml's build section looks like: <build> <finalName>myapp</finalName> <plugins> ...
5
votes
3answers
4k views

ANT build for Android Proguard obfuscation

Can anyone share with sample/simple obfuscation ANT task for Android? Provided that I do have complete APK and I need just pass *class hru Proguard and then prepare *.dex to build APK
5
votes
2answers
1k views

How can I exclude external .jar from obfuscation by Proguard (Android project)?

When I export android project with proguard.cfg, all referenced .jar files are obfuscated as well. How can I exclude some of that .jars from obfuscation?
5
votes
3answers
1k views

how to use proguard in android 2.3

one of the features in android 2.3 is integrated proguard obfuscation when doing release builds. but how do i enable this obfuscation when creating my apk? thanks!
5
votes
2answers
672 views

How do I easily obfuscate an Android app when using IntelliJ IDEA?

Title says it all really. I imagine there are two options: Build a parallel ANT script and bypass the IDE (seems pretty inefficient when the IDE is so good) Somehow integrate Proguard/yGuard or ...
5
votes
3answers
1k views

How to debug with obfuscated (with ProGuard) applications on Android?

When I got something like this ERROR/AndroidRuntime(18677): Caused by: java.lang.NullPointerException ERROR/AndroidRuntime(18677): at com.companyname.a.a.a(Unknown Source) How can I know where ...
4
votes
2answers
1k views

Error: Can't find common super class of

I am trying to process with Proguard a MS Windows desktop application (Java 6 SE using the SWT lib provided by Eclipse). And I get the following critical error: Unexpected error while performing ...
3
votes
2answers
252 views

Android code obfuscation with ProGuard…how does one know it's been obfuscated?

I have an Android project that I recently published to the market after running it through obfuscation with ProGuard. The project exported without any complications, but how do I know it's been ...
3
votes
2answers
423 views

How can I check/upgrade Proguard version whn using it in Eclipse for Android development?

The documentation on this is extremely poor. I understand that ProGuard can be enabled by manually editing "default.properties" in the project's rot directory. And all the settings go into the ...
3
votes
2answers
659 views

Using Proguard with a library has a @Service bean which should autowire

I have a library Common.License which I am obfuscating with Proguard: <plugin> <groupId>com.pyx4me</groupId> <artifactId>proguard-maven-plugin</artifactId> ...
3
votes
1answer
437 views

Using Proguard with a library that uses Spring @Autowired by name

I'm using Proguard to obfuscate a library that has several @Autowired fields. The obfuscator is renaming those class fields (because they are private/internal to the class) and thus my bean is ...
3
votes
3answers
1k views

Injection with google guice does not work anymore after obfuscation with proguard

Has anyone ever tried to combine the use of google guice with obfuscation (in particular proguard)? The obfuscated version of my code does not work with google guice as guice complains about missing ...
2
votes
2answers
177 views

How to fix proguard NoSuchMethodException on Android

I have obfuscated Lite and a full projects both referencing a library project. At runtime I'm getting "NoSuchMethodException myMethod" error According to ...
2
votes
2answers
738 views

How to use Proguard with Android and protect the app's functional integrity?

I've an Ant build using the Proguard config below, which is that generated by the "android" command line tool, it seems pretty straightfoward. But when I build the app using this script, the app blows ...
2
votes
2answers
4k views

How to set up ProGuard in eclpise when exporting a signed, obfuscated android application?

I'm publishing an android application develpoed in eclpis and, as stated in the title, I would like to integrate proguard(obfuscation) into the build, specifically for exporting a signed app. Anyone ...
2
votes
1answer
968 views

Android & Proguard?

I am trying to use progurard with my android applications. The proguardGui accepts an input, and an output, the input requires a jar file. but the APK file for android doesn't contain any jar? I ...
2
votes
2answers
439 views

Is it possible to shrink rt.jar with ProGuard?

Is there a procedure by which you can optimize/shrink/select/obfuscate only 'used by your app' classes/methods/fields from rt.jar provided by Sun by using some optimization software like ProGuard (or ...
2
votes
1answer
705 views

how to obfuscate the war file using proguard

I want to obfuscate a war file using proguard,how can i do so ? Please explain me the steps
2
votes
1answer
772 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 option to get ...
1
vote
1answer
76 views

ProGuard obfuscation, java, Google Gson and generic collections - how to keep members?

I have a class like this: public class MyClass { private Queue<MyOtherClass> myQueue; } My problem is that I cannot get ProGuard to keep myQueue after serialization to json using Google ...
1
vote
1answer
53 views

Weird behaviour while obfuscating a JAR with proguard

I'm trying to obfuscate an Android JAR using Proguard (4.7, but 4.6 problematic too). I could break down the problem into a simple sample project. The problem: For some functions (unclear for what ...
1
vote
1answer
117 views

Error working with Jackson library post-obfuscation using Proguard

after scouring through all sorts of queries related to issues w/ obfuscation using Proguard, I've come to the point where I feel I might be the only one having this particular issue. Hence, the post. ...
1
vote
2answers
278 views

How to obfuscate an Android library (.jar file) using Proguard in Eclipse

I have seen many posts about how to obfuscate an Android application (.apk file) using ProGuard in Eclipse. Also see http://developer.android.com/guide/developing/tools/proguard.html: "When you ...
1
vote
1answer
63 views

How to stop proguard from obfuscating entire package?

I need to prevent Proguard from obfuscating any classes from the package com.foo.*. I have tried: -keep com.foo.** { <fields>; <methods>; <constructors>; } But ...
1
vote
1answer
144 views

How to keep classes containing specific members?

I want to keep only classes, which contain methods annotated with @Keep, and these methods. These methods (and owning classes) should be kept even if they are unused. What I write in .pro-file is: ...
1
vote
4answers
375 views

How to create an obfuscated jar file?

How can I go about creating an obfuscate jar file? As of now I can easily export my Android lib project to a jar and use it. How do I obfuscate the jar file? My end goal is to allow others to use my ...
1
vote
1answer
257 views

Proguard: avoiding naming collisions with pre-obfuscated library JARs

It seems that Proguard doesn't make any attempt to avoid naming collisions with classes in library JARs when it renames/repackages classes. Is this correct, or have I just not configured it ...
1
vote
2answers
606 views

Can I always use the Reflection API if the code is going to be obfuscated?

I found that there seem to be 2 general solutions: don't obfuscate what is referred to through the reflection API [Retroguard, Jobfuscate] replace Strings in reflection API invocations with the ...
1
vote
1answer
425 views

android: proguard obfuscating imported jars

I've made a IM client that uses the asmack .jar library to communicate with google IM service server. Now I am trying to export my application from eclipse and use the proguard tool to obfuscate my ...
1
vote
1answer
1k views

How to obfuscate a webapp using Maven and ProGuard

I use Maven and the maven-war-plugin to to build my WAR. All JSPs are pre-compiled using the jspc-maven-plugin and all classes are put into a JAR (WEB-INF/lib). So far everything works fine. Now I try ...
1
vote
1answer
930 views

Using ProGuard to obfuscate code

I chose ProGuard and here's the options I configured it with: Shrinking Options: Shrink Keep: Applications Applets Also keep: Enumerations Database drivers Swing UI L&F Obfuscation Options: ...
1
vote
2answers
196 views

Java obfuscation

when using proguard, it seems to obfuscate entire name spaces that I am merely including. Can I tell it to only obfuscate my code and not all the libs im using? Some of the libs rely on reflection of ...
1
vote
2answers
2k views

Android ==> ant and proguard?

I am getting the following error while obfuscating my application. How can i define the output jar in my build.xml? [java] Shrinking... [java] java.io.IOException: The output jar is empty. Did you ...
1
vote
2answers
374 views

Proguard: How not to optimize classes from a library

I've got a JavaME project here in which I had to include a given library. I'm using Netbeans 6.8, so I just added the library to the project. The classes of the library are then correctly packed into ...
1
vote
1answer
226 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 { public int ...
1
vote
3answers
1k 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. When trying to ...
1
vote
2answers
1k views

How to obfuscate an OSGi bundle with ProGuard?

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 something like a.b.c), but keeps ...
0
votes
1answer
32 views

conversion to dalvik format failed with error 1 when enabling proguard

I'm trying to set up proguard for our existing app. It has a bunch of .jar files in the libs folder and these packages are specified in the build path.. They threw bunch of errors until i added ...
0
votes
0answers
54 views

Proguard configuration on a Enterprise Java Application

I'm trying to use proguard in a Maven project this is a obfuscate plugin, when I run it I have an error: Failed to execute goal com.pyx4me:proguard-maven-plugin:2.0.4:proguard (default) on project ...
0
votes
1answer
64 views

Obfuscation using proguard

hi i have used proguard to obfuscate my java class.After completing the obfuscation process i used java decompiler to decompile my java class at that time my class names,methods and variables did not ...
0
votes
1answer
70 views

Obfuscating jar file using proguard

I used proguard to obfuscate my jar file. During processing I got the following errors: Initializing... Warning: tdvep.jmNb: can't find referenced class QSYGWO Warning: tdvep.qmfsfjttKdvEpNz: can't ...
0
votes
0answers
27 views

Obfuscating a jar file using proguard

hi i used proguard to obfuscate my jar file when i processing i got the following errors Initializing... Warning: tdvep.jmNb: can't find referenced class QSYGWO Warning: tdvep.qmfsfjttKdvEpNz: can't ...
0
votes
1answer
37 views

Proguard: keepclassmembers inside a Namespace

I'm trying to obfuscate my Android app. After obfuscating, there are a few things broken, so I need to keep all classmembernames inside a special namespace. what did't worked was -keepclassmembers ...
0
votes
1answer
31 views

Proguard: how to filter certain packages from being obfuscated?

Is there a way to filter certain packages from obfuscation? Currently obfusticating a certain class results in failure to find a native library in the local directory, so I just want the main ...
0
votes
1answer
65 views

Proguard causes problems with SSL keystore on Android

In an Android app, I fetch content from a https url; in order to avoid SSL cert verification errors, I add the SSL public key to my keystore, which then resides in my res/raw folder of the app. ...

1 2