Last active
January 7, 2021 17:15
-
-
Save SeanZoR/9757178 to your computer and use it in GitHub Desktop.
ProGuard - simple ignore for 3rd party libraries
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
# Ignoring all of the external "org" libraries | |
# (for example org.apache & org.jackson) | |
-keep class org.** { *; } | |
-dontwarn org.** | |
# Have more? Simply add them like the one above, | |
# and change to the desired package name. |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment