Skip to content

Instantly share code, notes, and snippets.

@SeanZoR
Last active January 7, 2021 17:15
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save SeanZoR/9757178 to your computer and use it in GitHub Desktop.
Save SeanZoR/9757178 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