Created
March 12, 2017 14:09
-
-
Save rakawestu/56f3dfda2ca0e45e12bbc0c8a286cbc6 to your computer and use it in GitHub Desktop.
Library Module Proguard
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
buildTypes { | |
release { | |
minifyEnabled true | |
consumerProguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Keep Public Class | |
-keep class com.example.sdk.LibraryExample { *; } | |
# Keep all classes in models package | |
-keep class com.example.sdk.models.** { *; } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment