Proguard ignores config file of library

20,777

Solution 1

You typically should not enable ProGuard in the library project. ProGuard processes the application and the library together in the application project, which is the most effective approach.

In the library project, you can specify any library-specific ProGuard configuration in build.gradle, e.g.:

defaultConfig {
    consumerProguardFiles 'proguard-rules.txt'
}

This file is then packaged in the library aar as proguard.txt and automatically applied in the application project.

If you do enable ProGuard in a library project (maybe because you want to distribute the library), then you also have to add the proper configuration for processing the library. The Android Gradle build doesn't seem to do this automatically. You can:

  1. Copy android-sdk/tools/proguard/examples/library.pro to proguard-project.txt in your library project.
  2. Remove the sample input/output lines -injars, -outjars, -libraryjars, -printmapping from the file. The Gradle build process automatically provides these options.
  3. Reference the configuration from the build.gradle of the library project.

Enabling/disabling ProGuard independently for the library project and for the application project works fine for me.

Solution 2

Amazingly, Eric's answer is actually working for me too!

Of course Eric knows what he is talking about, but I have [on and off] been trying to find a clean way to do this automatically in gradle for over a year with no luck until I just found this post today.

I combined a few other SO threads and came up w/ this solution that works, that may also be able to be simplified. Steps 1-4 are optional, but so far it hasn't seemed to have hurt.

  1. Download Proguard 5.2 from http://sourceforge.net/projects/proguard/files/proguard/5.2/
  2. Unzip to .../android-sdk/tools/proguard5.2
  3. Rename .../android-sdk/tools/proguard to .../android-sdk/tools/proguard4.7
  4. ln -s .../android-sdk/tools/proguard5.2 .../android-sdk/tools/proguard
  5. Copy android-sdk/tools/proguard/examples/library.pro to the library project folder and rename to proguard-library.pro
  6. Edit proguard-library.pro and comment out the -injars, -outjars, -libraryjars, and -printmapping lines.
  7. Edit the library's build.gradle file to include:

    defaultConfig {
      minifyEnabled true
      shrinkResources true
      proguardFiles 'proguard-library.pro'
      consumerProguardFiles 'proguard-library-consumer.pro'
    }
    

    You can tweak this to have different behavior for release and debug builds.

  8. proguard-library-consumer.pro

    # include in this file any rules you want applied to a
    # consumer of this library when it proguards itself.
    
    -dontwarn junit.**
    -dontwarn org.junit.**
    
    # Make crash call-stacks debuggable.
    -keepnames class ** { *; }
    -keepattributes SourceFile,LineNumberTable
    

Solution 3

The only thing that worked for me is to define both options in my library:

release {
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
consumerProguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
Share:
20,777
Marian Klühspies
Author by

Marian Klühspies

Enthusiastic Software Developer. Started with Android Apps in 2013, moved to backend and frontend development and knows about Spring, Jakarta EE and Node.js. Looking for the easiest, most profitable ad solution for Android, iOS, Unity and so on? Appodeal It combines all major ad networks with just a single registration required and optimizes your profit!

Updated on September 04, 2020

Comments

  • Marian Klühspies
    Marian Klühspies over 3 years

    I'm facing a really weird problem for days now...

    I have a Gradle app with two modules, one main module and one library module.

    • In both modules I have declared a proguard-rules.pro file path which is correct
    • In both .gradle files I have minifyEnabled true

    here is the first problem: even if minifyEnabled is false in the library, it gets obfuscated. it has no effect at all and seems to depend on the main module's settings. I´m using proguard since a while now and I've never experienced such a behavior at all.

    Also, the proguard-rules.pro of the library seems to be completely ignored. It doesn't matter what I declare there, it is not used and the result is always the same (always decompiled to view result). It's obfuscated with the default settings.

    I've used an invalid proguard file name to see if the file is even touched, and indeed there are errors with the wrong name and it also complaines about syntax errors in the proguard file...

    I don't know if it is somehow related to an update of Android Studio, as it has also recommended me to use "minifyEnabled" instead of "runProguard".

    How can I manage proguard to use the proguard-rules.pro of the library too?

    Edit:

    I've made an sample project to clarify my problem

    enter image description here

    The proguard config of my library

    enter image description here

    The gradle of my library:

    enter image description here

    And finally the result I always get. It doesn't matter what I exclude/include in the proguard config

    enter image description here

    As you can see, the proguard rules work quite well on the main module. It does what it should. But it always fully obfuscates my library to a.a....

    It also has completely deleted the Activity of the Library, which shouldn't happen at all