Skip to content

Instantly share code, notes, and snippets.

@minhanhhere
Last active August 29, 2015 14:27
Show Gist options
  • Save minhanhhere/be5a36420cff3103e940 to your computer and use it in GitHub Desktop.
Save minhanhhere/be5a36420cff3103e940 to your computer and use it in GitHub Desktop.
Android Log removal with Proguard
-assumenosideeffects class android.util.Log {
public static *** d(...);
public static *** e(...);
}
from
http://stackoverflow.com/questions/12390466/android-proguard-not-removing-all-log-messages
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment