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?