java: Disable debugging

TODO: Integrate with the build system while keeping R8 enabled
This commit is contained in:
Danny Lin 2021-09-06 03:20:46 -07:00
parent fd2fd32f83
commit c83f9aff47
No known key found for this signature in database
GPG Key ID: 1988FAA1797EE5AC

View File

@ -2,7 +2,7 @@ package dev.kdrag0n.safetynetriru
import android.util.Log
private const val DEBUG = true
private const val DEBUG = false
private const val TAG = "SafetyNetRiru/Java"
internal fun <T> Any.get(name: String) = this::class.java.getDeclaredField(name).let { field ->