Tagged Questions

10
votes
1answer
148 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
2answers
1k views

Proguard issues with jar files, how to find the missing jar?

When I try to export my apk with Proguard I get a lot of errors (over 400) similar to: Warning: org.codehaus.jackson.jaxrs.JsonMappingExceptionMapper: can't find superclass or interface ...
8
votes
3answers
8k views

Proguard.cfg Missing

I made the mistake of upgrading eclipse today and now can't get my a new Android project to get going. I get the message Proguard.cfg (the file can't be found). Where is this thing I can't seem to ...
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
4k 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 that references the ...
5
votes
2answers
256 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
2answers
218 views

Avoid apk cracked

Recently I released an app into Android Market using the licensing system with the ServerManagedPolicy model. Some days ago someone cracked the apk making it always response "Using cached license ...
5
votes
2answers
624 views

How do I sign my ProGuard'ed Scala stand-alone JARs?

I've built a (command-line) application in Scala that I want to distribute as a standalone JAR. I'm building it with sbt: import sbt._ class Project(info: ProjectInfo) extends DefaultProject(info) ...
4
votes
1answer
448 views

Android Proguard - only obfuscation

Is it possible to use Proguard for only obfuscation. I don't want proguard to remove any classes from my projects. My intention to use Proguard is only for obfuscation so as to prevent reverse ...
4
votes
2answers
752 views

How to use Java annotations to guide Android's Proguard?

When using Proguard with Android, methods that are only invoked via reflection (e.g., callbacks defined in onClick XML attributes) are erroneously stripped out. One solution for this issue is to add ...
4
votes
2answers
552 views

static java bytecode optimizer (like proguard) with escape analysis?

Optimizations based on escape analysis is a planned feature for Proguard. In the meantime, are there any existing tools like proguard that already do optimizations which require escape analysis?
4
votes
2answers
997 views

Running proguard on OSX: Where is Apple's equivalent to the rt.jar?

I'm running proguard to shrink my jar file. One of the parameters it needs is the system's runtime jar. This is at $JAVA_HOME/lib/rt.jar on Sun distributions, but not on Apple's Mac OSX (Snow ...
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
0answers
73 views

Internal error occurs when running the java web application after proguard Obfuscation

I am using Proguard for obfuscating the class files used in an java web application developed in struts2 framework in eclipse environment.After performing the proguard operation, the class members are ...
3
votes
2answers
199 views

Using Proguard to Obfuscate Android App with Dropbox.com Libraries

I've just finished creating an Android app that requires the Dropbox.com API libraries. I'm now trying to build the application in 'Release' mode and would like to run proguard on the code in order to ...
3
votes
1answer
248 views

Does Proguard remove unused code (on Android)

I was just wondering, I am designing a library to use with my Android projects. Now I am starting to include things like the apache FTP jar to support some debug file uploads. I know that not all ...
3
votes
3answers
198 views

ProGuard Performance - Will ProGuard make my software faster?

Does anyone have experience in using ProGuard and are there already measurements about application performance beyond the class loading time? I have a fairly complex application that could need a ...
2
votes
3answers
95 views

Java compiler doesn't optimize out static final string. Why?

I have the following code in my app: public static final boolean DEBUG = true; public static final boolean REL = !DEBUG; private static final String DEBUG_OR_RELEASE = (REL) ? "RELEASE_VER" : ...
2
votes
2answers
111 views

proguard as ant task

I actually have two related questions: Can predefined constants be expanded in the task declarations as <injar file="${build}/myjar.jar" />? How can I reuse the classpath definition in ...
2
votes
1answer
129 views

Details about ProGuard, Launch4j?

What is the purpose of ProGuard? How to use Proguard in my web application project? In web application project I used Struts 2. How do use Launch 4j in my project for converting exe file. Before ...
2
votes
2answers
209 views

Jackson Json parser returns nulls on all object members on Android after optimizing with Proguard

I have an Android app which uses Jackson parser for JSON parsing. After I've ran Proguard on the classes I started to get null values on each and every member of the de-serialized classes. For ...
2
votes
2answers
164 views

Proguard warnings: can't find referenced class scala.*

After upgrading to new Android tools, I am getting following warnings from Proguard: Warning: scala.xml.EntityRef: can't find referenced class scala.xml.EntityRef$$anonfun$text$1 Warning: ...
2
votes
3answers
338 views

Android proguard obfuscated code is causing NullPointerException when it really shouldn't be

I have distributed an application on the Android Marketplace. I am getting error reports back in from a small handful of users (maybe 2%) where they are getting NullPointerExceptions where it doesn't ...
2
votes
2answers
108 views

Android: Java: Proguard: How to: verify if my jar (different jar project)/apk are successfully processed? (I am thinking to reverse engineer it)

I successfully processed my jar and apk. Then, want to verify if is it truly hard to reverse engineer or truly did the obfuscation. I am thinking to try to reverse engineer it by myself to see what I ...
2
votes
1answer
86 views

ProGuard makes apps not compile with “could not convert to dex bytecode with error 1”

I'm trying to export my Android app in Eclipse with the newest versions of Eclipse, the Android SDK, the ADT, and ProGuard. If I add the ProGuard cfg file to the default.properties file (no ...
2
votes
2answers
881 views

Eclipse export Signed APK fails with SDK 12 and Compatibility LIbrary

I'm trying to export a signed obfuscated version of my Android application and I keep getting this error. I recently added the v4 compatibility library and haven't been able to export a signed APK ...
2
votes
1answer
156 views

Any way to remove logging calls without using ProGuard optimization?

I have a wrapper class for making log calls during development. This makes it easy to turn all logging on or off at any given time (plus some other nifty features). Previously I used a specific ...
2
votes
3answers
382 views

App works perfectly on 1.6, but why am I getting java.lang.VerifyError on Xperia X10 running 1.6?

My app works perfectly on both emulated and real 1.6 devices. However The Sony Xperia X10 series (running 1.6) is crashing with a java.lang.VerifyError. This thread leads me to believe ProGuard ...
2
votes
3answers
910 views

Best decompiler for obfuscated bytecode [closed]

I deal a lot with obfuscated (proguard) bytecode, and currently I'm using JD (http://java.decompiler.free.fr/ ) to decompile it. JD does a decent job, but some times the generated code is too ...
2
votes
1answer
472 views

Proguard won't keep a class member's enums

I'm working on a library that is distributed as a java jar, and I'm running proguard on it in such a way as to only leave the required interfaces exposed. I have a configuration class with a bunch of ...
2
votes
2answers
648 views

java.lang.StackOverflowError when trying to optimize Java+Scala with ProGuard

I have an applet, which I was writing in Java. Recently, I thought that it would be good to add some Scala code to it (since Scala has good interoperability with Java). Everything works fine, but when ...
2
votes
2answers
803 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
5answers
305 views

How to setup a good java build environment?

Java/Eclipse. Development works fine. We have either Windows or FreeBSD for build server. To deploy though I would like to do the following (in a very automated way): 1: Pull down everything from ...
2
votes
2answers
452 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
741 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
798 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
117 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
101 views

Maven, Proguard and a jar I don't want

I'm obsfucating a project with the proguard-maven-plugin. Everything works fine except one thing: I don't want the original jar, neither in the target directory nor deployed in the repository. At the ...
1
vote
2answers
46 views

Retrieve some info based on the apk signature

I'm trying to implement a version invalidation system for server-based apps. With the following model: In some petitions to the server the client add a keyword and if that password isn't in a white ...
1
vote
2answers
58 views

Can proguard leave out the unused classes of the libraries?

I have a java application using the pdfbox library, which makes 10mb. I use just a few classes of this library. I thought that ProGuard would generate a standalone jar for my application. But the jar ...
1
vote
1answer
324 views

ProGuard with maven-android-plugin

I'm trying to pack my project to APK and then obfuscate it with ProGuard. Here is my pom: <?xml version="1.0" encoding="UTF-8"?> <project xmlns="http://maven.apache.org/POM/4.0.0" ...
1
vote
1answer
68 views

Proguard crashes on Scala code depending on Multiverse STM

I'm trying to optimize some Scala code which relies on the Multiverse STM (0.6.2) with Proguard. I'm using the STM in conjunction with akka. As I try to do so, I get the following error: Unexpected ...
1
vote
2answers
571 views

Android Proguard Compatiblity Library

Hello I'm writing an application that uses the compatibility library and i'm using a view pager in the app. I also am using an action bar library which i got from this link ...
1
vote
2answers
74 views

In proguard, how to preserve a set of classes' method names?

I am using proguard to obfuscate my android application. The android application contains some native code, which makes callbacks to fully qualified java methods. I need to not obfuscate these ...
1
vote
1answer
73 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
225 views

Proguard simple example error

Is my first time using Proguard. I'm testing it in a example project with following code (Just for check when the stacktrace is obfuscated) package com.proguardtest; import android.app.Activity; ...
1
vote
2answers
214 views

java ProGuard remove (shrink) unused classes

Let's say I have this Java app: package com.site; public class MyAppBase {} ....... package com.site.free; import com.site.MyAppBase; public class MyApp extends MyAppBase {} ....... package ...
1
vote
1answer
180 views

Java Ant - how to pass a ProGuard task arguments and use them inside a configuration file?

I have this in my build.xml: <target depends="build-jar" name="proguard"> <taskdef resource="proguard/ant/task.properties" classpath="tools/proguard4.6/lib/proguard.jar" /> ...
1
vote
2answers
216 views

When obfuscating with ProGuard, does -keepattributes SourceFile,LineNumberTable make the resulting apk easier to reverse engineer?

I find myself needing more detail in my reported stack traces, but I'm concerned that by including the extra data (by using -keepattributes SourceFile,LineNumberTable) I'm making my app even easier to ...

1 2