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

learn more… | top users | synonyms

0
votes
1answer
42 views

Android Studio proguard doesn't work

I select "generate signed apk" in Android Studio and then check the "run proguard" checkbox in order for proguard to obfuscate my code. Unfortunately if the checkbox is checked the export of the .apk ...
0
votes
0answers
11 views

proguard not working with adt 22.0.1 (only Mac)

I am trying to obfuscate the code by enabling proguard in Mac but I get an error .After the update to adt 22.0.1 and after other updates sometimes: error code 1 when proguard.config=proguard.cfg and ...
0
votes
0answers
14 views

How to include class file inside the war using proguard?

I have created war file in the following order fax.war: +---WEB-INF +---classes This folder contains the compiled classes +---lib Third party libraries and the ...
0
votes
0answers
18 views

Error in Jackson.jar when running proguard in android

I have an android project that uses jackson-all-1.7.2.jar. When I run a proguard with this proguard.cfg file: -keep class com.actionbarsherlock.** {*;} -keep class org.holoeverywhere.** {*;} ...
1
vote
1answer
14 views

Using getResource with ProGuard results in null result

Using ProGuard on my jar files has broken my calls to class.getResource(""). I have seen that in the ProGuard manual you need to specify the -keepdirectories mypackage (manual link). However, I have ...
0
votes
0answers
6 views

Obfuscate single package with all dependencies

I would like to obfuscate a single package and its all dependent classes and non-java resources files. Can anybody let me know if this is possible using proguard. if yes how we can achieve this?
0
votes
2answers
36 views

socialauth-android: proguard errors when exporting apk

Using socialauth-android, when I try to export my project I get these warnings: Warning: org.brickred.socialauth.util.SocialAuthUtil: can't find referenced class ...
0
votes
0answers
13 views

Joda chronology with null fields on Android (using Proguard)

I'm using joda-time's LocalDates on Android. When I shrink my app with Proguard, I see NullPointerException when I'm comparing LocalDates (i.e., using LocalDate.equals()). I did some poking around ...
0
votes
1answer
14 views

Obfuscate dependencies to single jar with Proguard

I have modular maven application and "module1" depends on "module2" and "module2" depends on "module3" etc.. In module1 I have something like this: <profile> <id>obfuscate</id> ...
1
vote
1answer
34 views

Proguard Parse Exception Error. How to solve it

I am trying to export my application using Proguard 4.9 for the first time. But while exporting I am getting weird error in Console. Here it is - [2013-06-11 14:59:42 - Project1] Proguard returned ...
0
votes
1answer
35 views

How to tell ProGuard to obfuscate method and class names?

I'm using ProGuard to obfuscate my apk, but there's no changes in class and method names - they are same as before. Only variable names are changed. Most of them doesn't extends classes like ...
0
votes
0answers
11 views

Proguard: use variable to point to the sdk directory

I have these two lines in some of my proguard.cfg files: -libraryjars /path/to/sdk/android-sdk-linux/add-ons/addon-google_apis-google_inc_-10/libs/maps.jar -libraryjars ...
2
votes
0answers
27 views

With SBT, how can I have two different proguard tasks with different settings?

I have a single source tree from which I might build two different jars; call them JarA and JarB. I am using the sbt proguard plugin to run each jar through proguard. This plugin creates a task key ...
0
votes
0answers
22 views

GSON + InAppBilling + ProGuard --> App doesn't working

I've activated proguard in my application to obfuscate my code. The problem is my activity where InAppBilling happens, does not working anymore. First I get an successful request from my own server ...
0
votes
0answers
11 views

get error from proguard

When I try to export an apk file it gives me this error: [2013-06-10 13:46:47 -] Proguard returned with error code 1. See console [2013-06-10 13:46:47 -] Warning: ...
0
votes
0answers
18 views

Proguard: NoClassDefFound although it's in the APK

FATAL EXCEPTION: pool-2-thread-3 java.lang.ExceptionInInitializerError at qu.a(Unknown Source) at pq.a(Unknown Source) at ta.a(Unknown Source) at td.a(Unknown Source) at ...
0
votes
0answers
10 views

Minimal Proguard configuration to remove Logging and Assertions

It looks like Proguard does not work very well with my project as no matter how I use it it breaks something. But basically my intention for using ProGuard is only to remove Logging and Assertions ...
2
votes
0answers
22 views

What optimisation is safe that still allows -assumenosideeffects removals

I've noticed that with projects I have created recently, there comes a new approach to proguard which is to use a pre-built script: ${sdk.dir}/tools/proguard/proguard-android.txt This is without ...
0
votes
1answer
23 views

Android: proGuard tutorial to specify exclusion and inclusion from obfuscation

I like to know if there's a cmprehensive tutorial on using proGuard for Android projects? Particularly, I like to learn how to specify which class to exclude (for all include mode), include (for all ...
1
vote
2answers
140 views

Android Studio and ProGuard - can't write resource [META-INF/MANIFEST.MF] (Duplicate zip entry [volley.jar:META-INF/MANIFEST.MF])

I have an Android app which uses actionbarsherlock and the next jars under the libs folder: android-support-v4.jar gson-2.2.4.jar libGoogleAnalyticsV2.jar volley.jar I am trying to generate a ...
0
votes
1answer
57 views

PhoneGap / Android Release Signed Apk Dalvik Error Code 1

Firstly, sorry for my bad english! I've made an Android/PhoneGap application and i'm trying to export it for google play store but Eclipse throw me the error 'Conversion to Dalvik format failed with ...
0
votes
1answer
24 views

proguard exception while creating apk in ecllipse in android

In my application i want to enable proguard for that i added proguard.config=proguard.cfg in project.properties. My proguard.cfg contains -optimizationpasses 5 -dontusemixedcaseclassnames ...
0
votes
0answers
25 views

proguard obfuscation of package-private members shared across maven modules

I'm using the com.pyx4me.proguard-maven-plugin to obfuscate code in a multi-module project. How can I obfuscate a module that depends upon 'friend' methods from a different (obfuscated) module? I wish ...
0
votes
2answers
143 views

Google Play Services with Proguard in Android Studio

I've recently move across from Eclipse to Android Studios. I had my app using Proguard via eclipse and now that I've move across I'm getting the following errors. Error: ProGuard: [myApp] Warning: ...
-1
votes
2answers
23 views

ProGuard: keep private Inner Class

How to keep private Inner Class in ProGuard. I am already using($ for inner class) below code in my proguard.cfg but its not working. -keep public class ...
1
vote
1answer
27 views

How to troubleshoot “Duplicate zip entry” error?

I keep getting this error when switching from a previous project to this project and then trying to export it: Proguard returned with error code 1. See console Warning: can't write resource ...
0
votes
1answer
30 views

Exclude all 3rd party libraries from ProGuard with Android Maven Plugin

I'm trying to obfuscate my Android project code, I've managed to get ProGuard working when including the following in my proguard.cfg: -keep class javax.** { *; } -keep class org.codehaus.jackson.** ...
0
votes
1answer
18 views

why we should use key word “-keep” in proguard.cfg

I don't understand that why we need to use the key word "-keep" in proguard.cfg. The purpose of proguard is to confuse people who try to read the source code. In my opinion, we should try to make all ...
0
votes
2answers
73 views

Proguard exception while creating release android signed apk

I am using Google API for Google authentication in our project, but while making a release signed APK, we are facing some warnings such that we are not able to generate the signed APK. Please point ...
0
votes
0answers
22 views

Android ORMLite get error with Proguard [duplicate]

I'm using ORMLite in my project and everything is Ok until use Proguard, when I use proguard I'm getting this error: java.sql.SQLException: Could not find public constructor with ConnectionSource ...
0
votes
1answer
42 views

How to use Proguard in Android with jackson,ormlite, android lib project to remove logs?

I am trying to remove logs from Android app, but I have some jar-libs, android project libraries. I saw a lot of questions about proguard. Right now script looks like that: -verbose ...
0
votes
2answers
58 views

java.lang.NoClassDefFoundError after proguard obfuscation

After exporting signed package from eclipse, application started crashing when one of activities is invoked. 05-30 23:05:43.814: E/AndroidRuntime(11578): FATAL EXCEPTION: main 05-30 23:05:43.814: ...
2
votes
1answer
63 views

Proguard ate my Object.wait()

I just found that ProGuard removed a .wait() call which I used to synchronize threads, which lead to a race condition which lead to a day of happy debugging :) Anyway... I tracked it down to ...
2
votes
0answers
26 views

Maven with Proguard and assembly plugin

I am trying to use Maven with the following configuration: Use maven-assembly-plugin to build a single JAR with all dependencies (assembly:single). Use Proguard plugin afterwards to prune all ...
1
vote
1answer
25 views

When use proguard,Warning: can't find referenced method 'void deleteAll()' in class javax.microedition.lcdui.List

Everyone: I developed one project,which run in j2me platform.When i use proguard,it warning me the below thing,anyone can help? Initializing... Warning: BtPrinterScreen: can't find referenced method ...
2
votes
0answers
46 views

Removing Android debug resources in release

Currently I'm working on an app that retrieves json from a server. I'm testing the app on multiple devices, but I only have one SIM card. So in order to test on a device, I need to move the SIM card ...
0
votes
2answers
48 views

i want to obfuscate AndroidManifest.xml with Proguard

Can i obfuscate AndroidManifest.xml file with Proguard? i think write to source code in my proguard.config file. (-adaptresourcefilenames AndroidManifest.xml) but it wasn't work.
0
votes
2answers
60 views

Conversion To Dalvik format Exception : Invalid dex bytecode offset

I am getting the following error when trying to run my code with ADT v21 using Eclipse Juno. [2013-05-28 10:08:39 - XYZ] Dx EXCEPTION FROM SIMULATION: [2013-05-28 10:08:39 - XYZ] Dx local ...
0
votes
1answer
42 views

Obfuscating ActionBar code not showing the Menu items

I have developed the application in Android 4.1 version using the ActionBar. If I am not obfuscating the ActionBar code means the menu items are displayed in the ActionBar, while after obfuscating the ...
1
vote
1answer
40 views

How to used proguard in my application and secure with decompiler

If any have step by step process of using proguard in android application then please share. I have found some information but it hasn't helped. I am doing research since last 3-4 hours but I am ...
1
vote
3answers
64 views

Proguard causing NoSuchMethodException - followup

Following the suggestions from @AlexWein in this question and looking at ProGuard Troubleshooting, I have the following in a SherlockFragment: Class<?> c = ...
0
votes
1answer
47 views

Proguard causing NoSuchMethodException

Class<?> c = Class.forName("co.uk.MyApp.dir.TargetClass"); Method main = c.getDeclaredMethod("main", Report_Holder.class); Throws a 'java.lang.NoSuchMethodException.main[class ...
0
votes
1answer
13 views

Why LineNumberTable is not enabled default in ProGuard configuration in Android?

It is very very hard to use the crash reports without knowing the line numbers. Also you cannot debug the code without line numbers as well. Is there a specific reason to disable the line numbers ...
0
votes
1answer
57 views

What symbolicated crash reporting means in android

i just started using crittercism crash reporting tool for my android app . their web shows some content which is completely beyond my tiny head. like an alert message "To get symbolicated crash ...
0
votes
1answer
50 views

Proguard - Can't find any super classes

I'm getting this error: Unexpected error while performing partial evaluation: Class = [org/apache/log4j/chainsaw/Main] Method = [<init>()V] Exception = ...
-1
votes
1answer
23 views

Possible to uncomment some code with Proguard/Android

In my code, I have some urls that refer to my local server, that I manually change, when I export my project to apk, like this : BASE_URL = "http://loc.server.com"; //BASE_URL = ...
7
votes
1answer
292 views

ADT R22 - Proguard - Can't find referenced class

For most of us the latest ADT update destroyed the whole workspace. After hours of repairing my projects I am able to compile and run it again. But Proguard is not working anymore. I get tonnes of ...
0
votes
2answers
178 views

ProGuard and HoloEverywhere: Export Signed Application Errors

I'm using ActionBarSherlock and HoloEverywhere in my project. Everything works perfectly, except when I try to export my signed application, ProGuard gives me grief: [2013-05-19 00:13:53 - ] Proguard ...
3
votes
2answers
59 views

Proguard obfuscation results in java.lang.IllegalArgumentException: class declares multiple JSON fields named “a”

Upon starting up my app logs two errors, but only after obfuscation. Without obfuscation there are no errors. Unless I'm being misled, the errors are like: class Property declares multiple JSON ...
2
votes
2answers
222 views

Fatal Error occurred after trying to export unsigned android application

I tried to export unsigned application from Eclipse to get the release file, it keeps giving me Fatal Error Code 1 with these details : P.S we are using Twitter4J library while we do not use anything ...

1 2 3 4 5 17