Top "Obfuscation" questions

Obfuscation is the process by which the code is altered so that a developer finds it much harder to understand clearly what the intended program does or how it operates.

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 …

android obfuscation proguard
Using Proguard with Android without obfuscation

I am getting an error "Conversion to Dalvik format failed with error 1" when using the -dontobfuscate flag. Otherwise my app …

android obfuscation proguard dalvik
Symbol hiding in static libraries built with Xcode

I'm trying to figure out whether I can build a static library that hides all of its internal objects and …

xcode gcc obfuscation symbols
Strange definitions of TRUE and FALSE macros

I have seen the following macro definitions in a coding book. #define TRUE '/'/'/' #define FALSE '-'-'-' …

c++ c macros boolean obfuscation
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 …

java android reflection obfuscation proguard
How to obfuscate my android project in eclipse IDE?

I want minimize my app size as well as avoid the app from reverse-engineering. Can anybody help with simple answer?

android obfuscation proguard android-2.2-froyo
Obfuscating C-based binaries to avoid decompilation

Is there some way to obfuscate C-based executables or libraries to prevent decompilation?

c obfuscation decompiler
Android - How to check Proguard obfuscation has worked?

I have obfuscated my apk, but the file size has only been reduced from 12MB to 10.5MB. The reason it …

android proguard obfuscation
How to encrypt HTML+JS assets in Android Phonegap mobile app?

I have mobile app created using Phonegap basic wrapper and HTML5. My goal is to encrypt files in assets directory (…

java android encryption cordova obfuscation
Using GSON with proguard enabled

My code works perfectly without proguard, but GSON doesn't work when proguard is enabled. This is the part of code …

android gson proguard obfuscation