Tagged Questions

ProGuard is a tool to shrink, optimize, obfuscate, and preverify Java classes. It is included in the Android SDK.

learn more… | top users | synonyms

18
votes
5answers
7k views

Using Proguard for Android in Eclipse Problem

I have taken a fresh install of Eclipse and all the latest Android tools and want to use Proguard on existing project, but for now I have created a new blank one. I have added a proguard.cfg file to ...
15
votes
2answers
5k views

Enabling ProGuard in Eclipse for Android

The new documentation on ProGuard for Android says to add a line to the default.properties file in the project home directory. However, on opening this file, I read at the top: # This file is ...
10
votes
1answer
137 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
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
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 ...
7
votes
3answers
2k views

Android Proguard java.io.IOException: Can't read [proguard.ClassPathEntry

Hi All When enabing proguard for android, while building the signed jar I get the following dump: [2011-02-03 11:28:27 - VideoCreator] Proguard returned with error code 1. See console [2011-02-03 ...
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 ...
7
votes
1answer
1k views

Android Proguard, removing all Log statements and merging packages

I have about 5 packages in my project, is it possible to merge all the packages into one large package, I want to do this to make hacking more difficult. How do I remove all references to Log.e Log.d ...
6
votes
1answer
138 views

How can scala applications for android be reduced in file size?

I am attempting to write Android applications with Scala in Eclipse. The problem I'm running into is that the deployed APK file is much too large - since you can't link Android apps to external ...
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
751 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 ...
6
votes
1answer
4k views

Android Proguard skip external jar

I tried to use Proguard in my Android project, i setup Proguard using command line 'android update project /path/to/project' and file proguard.cfg was created in project's root directory. (In my ...
6
votes
2answers
1k views

How to obfuscate an apk with Proguard through Eclipse?

I added proguard.config=proguard.cfgto my default.properties file and have a proguard.cfg file in my project root. If I now use Export as Android Application from within Eclipse I get the following ...
6
votes
5answers
2k views

Proguard error: Expecting class path seperator - not sure where I need to put a path in quotes

The error: BUILD FAILED C:\workspace\projectName\add-proguard-release.xml:35: Expecting class path separator ';' before 'Files\eclipse\android-sdk-windows\platforms\android-3\android.jar' in argument ...
6
votes
1answer
3k 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
107 views

What makes certain android classes “must -keep”?

I noticed that the "template" proguard.cfg always contains the following: -keep public class * extends android.app.Activity -keep public class * extends android.app.Application -keep public class * ...
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
270 views

Android, Scala and Proguard

After running headfirst into as many problems as there are permutations of the set of Android command-line tools, I finally managed to compile a mix of Scala and Java source code into a usable apk. ...
5
votes
3answers
421 views

Android Proguard - how to keep onClick handlers only referenced from XML layouts

In my Android app I ofter don't create a View's on-click handler in code, but rely on the ability to specify it in the XML layout file, like this: <Button .... ...
5
votes
2answers
489 views

Removing unused strings during ProGuard optimisation

I include this ProGuard configuration to strip out debug log statements when I release an Android application: -assumenosideeffects class android.util.Log { public static *** d(...); public ...
5
votes
1answer
256 views

Why does ProGuard keep the onCreate() method?

I'm trying to wrap my head around this, but I simply don't understand why this is happening: As per the default proguard.cfg file, I define the following rule: -keep public class * extends ...
5
votes
3answers
1k views

Compile with Proguard gives SimException UNEXPECTED TOP-LEVEL EXCEPTION

When I compile my Android Application with Proguard enabled I get the following error: -dex: [echo] Converting compiled files and external libraries into ...
5
votes
1answer
2k views

How to keep/exclude a particular package path when using proguard?

I want to exclude some file paths from ProGuard. Example com.myapp.customcomponents How can I do this? I hate to be placing -keep flags for every single custom component file I have in this ...
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 ...
5
votes
2answers
607 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
2answers
174 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 ...
4
votes
1answer
85 views

How do you make a signed & obfuscated android release build from inside eclipse?

My android development process is to build and debug my app in eclipse and when I'm ready to publish I produce a signed, obfuscated (with proguard) apk by running "ant release" from the shell. Is it ...
4
votes
1answer
164 views

How to tell sbt-proguard to include java *.jars?

I'm trying to make single executable *.jar via proguard plugin for sbt 10.*. All seems to be okay, except that sbt-proguard doesn't include java jars (in my case mysql-connector-java-5.1.10.jar) ...
4
votes
1answer
323 views

Removing logging with ProGuard doesn't remove the strings being logged

I have an Android application with dozens of logging statements. I'd prefer they wouldn't appear in the release version, so I used Proguard with something like this in the proguard.cfg file: ...
4
votes
1answer
359 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
1answer
174 views

Android Proguard issues

Using proguard seems to be quite confusing. I am interested in simply obfuscating a few packages within my app. I have eclipse set up in windows with the latest Android API's. I have added the ...
4
votes
3answers
473 views

proguard.cfg not working in exported application using LIBRARY

I have two versions of the same application using identical proguard.cfg with the following section aimed at squelching all Log.x() LogCat output: -assumenosideeffects class android.util.Log { ...
4
votes
2answers
288 views

How can I tell ProGuard to keep my function that is used for onClick?

I am using the android:onClick atribute in some of my .xml layout files for my android application, but ProGuard is removing these methods from my code when it runs because nothing in my code is ever ...
4
votes
2answers
367 views

Is using ProGuard worth the trouble?

From what I've seen and read, if someone really wants to reverse-engineer your software or decompile it, ProGuard is not going to stop them. But is it at least a modest deterrent? I'm not sure if it's ...
4
votes
2answers
707 views

Android: What are the recommended configurations for Proguard?

I'm developing apps for Android and using Proguard to obfuscate the code. Currently i'm using ProGuard configurations: -optimizationpasses 5 -dontusemixedcaseclassnames ...
4
votes
2answers
2k views

How do I build an Android project using Ant? (IntelliJ IDE)

I've a project in the IntelliJ IDEA IDE and I want to set up a parallel, production Ant build process that I can extend over time. I have used IntelliJ's feature to create an Ant build file, and it ...
4
votes
2answers
707 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
534 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
2k views

How to exclude R*.class files from a proguard build

I am one step away from making the method described here: http://stackoverflow.com/questions/2761443/targeting-android-with-scala-2-8-trunk-builds work with a single project (vs one project for scala ...
4
votes
2answers
920 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
2answers
50 views

optimize the project code

I have working on one project which is too complex and contain very much space with so many images java files as well . somewhere i have read about the proguard which optimize the code . i have ...
3
votes
1answer
1k views

Obsolete proguard file; use -keepclasseswithmembers instead of -keepclasseswithmembernames

I am having the following error on proguard.cfg file in my android project. I dont know what this error says. Any idea?
3
votes
2answers
90 views

With ProGuard, what is the impact on testing strategy?

I've needed to recently introduce ProGuard on Android because of issues with Scala on Android. I need ProGuard for its shrinking feature, which removes classes presumed to be unused. I'm very ...
3
votes
2answers
251 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 ...

1 2 3 4 5 7