Top "Proguard" questions

ProGuard is a tool to shrink, optimize, obfuscate, and preverify Java classes.

Proguard with OrmLite on Android

How should I use proguard with ormlite library on Android? Trying this: -keep class com.j256.** -keepclassmembers class com.j256.** …

android optimization obfuscation proguard ormlite
Resolving a "duplicate definition of library class" in ProGuard

I have a Java project which includes the Xerces library. When I process the project with Proguard, I get the …

java proguard xerces
How can I obfuscate only com.foo.* and com.bar.* (ProGuard)?

I want to obfuscate only some packages: com.foo.* com.bar.* I have tried -keepclasseswithmembers class **, !com.foo.**, !com.bar.** { *; } …

obfuscation proguard
How to reverse-engineer / decompile an Android APK which was obfuscated using ProGuard?

Unfortunately, I have lost the source code of one of my apps which I obfuscated using ProGuard. I still have …

android apk reverse-engineering proguard decompiling
Minify android app but do not obfuscate it

When I do not minify my app I reach the maximum method count and building the dex file fails. This …

android gradle proguard
Proguard Duplicate Zip Entry

I am trying to run my android application through Proguard, however this keeps appearing: Warning:Exception while processing task java.…

android gradle android-gradle-plugin proguard butterknife
Android ProGuard Unable to access jarfile ..\lib\proguard.jar in IntelliJ 11.1

I have a problem about Unable to access jarfile ..\lib\proguard.jar when run Export Singed Application Package from IntelliJ 11.1. …

android intellij-idea proguard
proguard warning library class android.webkit.WebView depends on program class android.webkit.WebViewClien

I have a version of file android.webkit.WebViewClient in my application source directory in order to handle onReceivedSslError in …

android proguard webviewclient
android library project obfuscation

Hi I developed one android library and Now I want to obfuscate it for redistribution. I develop my library with …

android obfuscation proguard android-library
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 …

android obfuscation jackson proguard