feat(security): disable logging in release builds
Signed-off-by: Infi <infi@infi.sh>
This commit is contained in:
parent
8afc3e748d
commit
ad91f437a1
|
|
@ -71,4 +71,14 @@
|
|||
|
||||
# hCaptcha related
|
||||
-dontwarn edu.umd.cs.findbugs.annotations.**
|
||||
-dontwarn lombok.**
|
||||
-dontwarn lombok.**
|
||||
|
||||
# do not log in release builds
|
||||
-assumenosideeffects class android.util.Log {
|
||||
public static boolean isLoggable(java.lang.String, int);
|
||||
public static *** v(...);
|
||||
public static *** d(...);
|
||||
public static *** i(...);
|
||||
public static *** w(...);
|
||||
public static *** e(...);
|
||||
}
|
||||
Loading…
Reference in New Issue