Top "Proguard" questions

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

How to avoid reverse engineering of an APK file?

I am developing a payment processing app for Android, and I want to prevent a hacker from accessing any resources, …

android security proguard reverse-engineering
How to remove all debug logging calls before building the release version of an Android app?

According to Google, I must "deactivate any calls to Log methods in the source code" before publishing my Android app …

android logging proguard android-log
Best practice for storing and protecting private API keys in applications

Most app developers will integrate some third party libraries into their apps. If it's to access a service, such as …

android reverse-engineering proguard api-key
How to use the ProGuard in Android Studio?

This is my first project in Android Studio, and the code of my apps are not obfuscated. Im using this …

android android-studio proguard
Could not determine the dependencies of task ':app:crashlyticsStoreDeobsDebug' if I enable the proguard

I get following error when I was running an app within Android Studio 2. Gradle tasks [:app:assembleDebug] Could not determine …

android proguard crashlytics
Prevent class member name obfuscation by ProGuard

I have my class ClassMultiPoint with subclasses. public class ClassMultiPoints { public String message; public List<ClassPoints> data; public …

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

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

android proguard
Where does Android Studio save the ProGuard mapping file?

In Android Studio, where are the ProGuard mapping files generated after compiling a signed APK? I'm not sure if it …

android android-studio apk proguard
proguard hell - can't find referenced class

So, I'm TRYING to release some software but Proguard is giving me a headache. When I try to export using …

android proguard