android-proguard-snippets

Additional

Language
IDL
Version
N/A
Created
Oct 22, 2013
Updated
Mar 18, 2019 (Retired)
Owner
Kevin Schultz (krschultz)
Contributors
Michael Alan Huff (koalahamlet)
Jozua Sijsling (jozuasijsling)
Jared Rummler (jaredrummler)
Kevin Schultz (krschultz)
Mohammad Akram (mdakram)
Michael Evans (MichaelEvans)
Scott Alexander-Bown (scottyab)
Mohit Kanwal (creativepsyco)
Dallas Gutauckis (dallasgutauckis)
Oleksii Malovanyi (almozavr)
Michael Carrano (michaelcarrano)
Daniel Lew (dlew)
Jens Driller (jenzz)
Niklas Baudy (vanniktech)
Justin Hall (wKovacs64)
mf (MustafaFerhan)
Robby Pond (robbypond)
Milad Nekofar (nekofar)
Show all (50)50
Activity
Badge
Generate
Download
Source code

android-proguard-snippets

Example Proguard configurations for common Android libraries.

This project assumes that your ProGuard configuration is based off of the latest official proguard-android.txt config as shown below. Each library configuration should only be the rules required for that specific library, not a complete Android ProGuard configuration. The various library configurations are combined by the Gradle build system. The library rules should be universal, any app specific rules (such as preserving model classes) should be added in a custom proguard-project.pro file.

Request additional libraries through issues. Pull requests are welcome.

Usage

android {
  buildTypes {
    release {
      minifyEnabled true
      // Library specific proguard files
      proguardFile 'proguard-google-play-services.pro'
      proguardFile 'proguard-gson.pro'
      ...
      // Default proguard files & project app specific rules,
      //  see examples folder for more information
      proguardFile 'proguard-project-app.pro'
      proguardFile getDefaultProguardFile('proguard-android.txt')
      // As of Gradle Android plugin 1.1.0, the test APK has a separate config
      testProguardFile 'proguard-project-test.pro'
    }
  }
}

Instead of declaring each configuration file manually, you could also store them in a seperate directory and include them all at once:

FileCollection proGuardFileCollection = files { file('./proguard').listFiles() }
proguardFiles(proGuardFileCollection)

Libraries

ProGuard tip for android libraries developers

The android libraries developers can include the proguard directives in the libraries. The Android Plugin for Gradle automatically appends ProGuard configuration files in an AAR (Android ARchive) package and appends that package to your ProGuard configuration

The developers only need to specify the Proguard file with consumerProguardFiles instead of proguardFiles:

defaultConfig {
    consumerProguardFiles 'proguard-file.pro'
}