How to obfuscate my android project in eclipse IDE?

22,059

Solution 1

Proguard is part of the android eclipse plugin, so you do not have to invoke it manually. You just need to activate it on your build.

To enable ProGuard so that it runs as part of an Ant or Eclipse build, set the proguard.config property in the <project_root>/project.properties file. The path can be an absolute path or a path relative to the project's root.

For some situations, the default configurations in the proguard.cfg file will suffice. However, many situations are hard for ProGuard to analyze correctly and it might remove code that it thinks is not used, but your application actually needs. Some examples include:

  • a class that is referenced only in the AndroidManifest.xml file
  • a method called from JNI
  • dynamically referenced fields and methods

The default proguard.cfg file tries to cover general cases, but you might encounter exceptions such as ClassNotFoundException, which happens when ProGuard strips away an entire class that your application calls.

You can fix errors when ProGuard strips away your code by adding a -keep line in the proguard.cfg file.

Solution 2

1) Download latest proguard from "http://sourceforge.net/projects/proguard/files/". Current latest version is proguard4.7

2) Replace "bin" and "lib" folder of "path of your SDK\tools\proguard" with latest downloaded proguard folders.

3) Check SDK location in eclipse for blank spaces in it and for that go to window > Preferences > Android. If there is blank space then replace it with:

Pathe of Android SDK

4) Check that proguard.cfg file is in your project's root folder and add "proguard.config=proguard.cfg" in project.properties file of android project.

5) Now export your project to get obfusticated apk.

Share:
22,059
Sujay
Author by

Sujay

Updated on October 10, 2020

Comments

  • Sujay
    Sujay over 3 years

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

  • Sujay
    Sujay over 11 years
    this works for me. Simple steps to obfuscate your .apk file:)
  • Erum
    Erum over 9 years
    where i can find proguard.cfg? inside eclipse there is no such file
  • Iman Marashi
    Iman Marashi about 8 years
    Error: Unknown option '0409' in argument number 1