First of all please dont take it as a duplicate question as I have tried all the solution from this forum but failed to get my answer.
From my gradle.build file I have made:
minifyenabled to true and then write this line of code in my project's proguard-rules.pro file:
-assumenosideeffects class android.util.Log {
public static *** d(...);
public static *** e(...);
public static *** i(...);
public static *** w(...);
public static *** v(...);
}
but this doesnt change anything in my project, when I make a release version apk and run on my device all log still shows! Is there anything new that I have to do now?
-assumenosideeffects
is skipped when-dontoptimize
is set (relevant documentation), which I believe is the default for the standard ProGuard configuration file provided by Android.If you'd like to use
-assumenosideeffects
then you will have to use theproguard-android-optimize.txt
configuration file from the{your-sdk-dir}/tools/proguard/
directory. This will be also applied to any libraries which you use in your application project, so their logging will be stripped as well if you're worried about that.As an alternative you could use a wrapper class for Android's
Log
, wrapping all calls in conditions checking theBuildConfig.DEBUG
flag, which is nicer since you will have a single access point for these checks as opposed to littering them all over your classes.It is however worth noting that for the latter solution you will not get a performance improvement for release builds, as if you have lots of logging where you concatenate strings for your messages these will still be evaluated at runtime for the method calls (even if they will never be printed out).