I use the below code in my proguard rules to strip out any log.d i may have left before i compile the release apk.
> -assumenosideeffects class android.util.Log {
> public static *** d(...);
> public static *** v(...); }
Is there a way to do it for all timber logs?
Timber.w("This shouldn't show in release apk when decompiled");
Would the same approach - but using a
Timber
class instead ofLog
- not work? E.g.:Alternatively, you could follow the sample project and do something like: