Created
July 10, 2020 10:20
-
-
Save jimmyFlash/f4d4514411a28a11ebabf708f0cbb889 to your computer and use it in GitHub Desktop.
Removing log calls using proguard / R8 rule
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
# no logging in production | |
-assumenosideeffects class android.util.Log { | |
v(...); | |
d(...); | |
i(...); | |
w(...); | |
e(...); | |
println(...); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment