Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juniorcesarabreu/603b88e7bc82e42ec9600ab1b3a456bc to your computer and use it in GitHub Desktop.
Save juniorcesarabreu/603b88e7bc82e42ec9600ab1b3a456bc to your computer and use it in GitHub Desktop.
ProGuard - simple ignore for 3rd party libraries
# 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