How can I protect my application’s APK from decompilation using proguard?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If you’re using Eclipse with the latest SDK release, just open the
project.propertiesfile in your project directory, read the instructions, and uncomment the appropriate line. ProGuard will run when you export your signed application. (It won’t run for debug builds, so you can easily debug and also read stack traces.)Read the developer docs for ProGuard in Android for more information.