Skip to content

Instantly share code, notes, and snippets.

View adrbtk's full-sized avatar

alex.drobotiuk adrbtk

  • Ukraine
View GitHub Profile
@adrbtk
adrbtk / gist:c8cb0381e7ce2283a77e2cc80aba40d3
Last active May 28, 2021 11:00
Configure removing of logging in android release build
  1. Add next lines to the file proguard-rules.pro
-optimizations code/removal/*
-assumenosideeffects class android.util.Log {
    public static boolean isLoggable(java.lang.String, int);
    public static int v(...);
    public static int d(...);
    public static int i(...);
 public static int w(...);