it.sephiroth.android.library.asm.commons.Constants.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of asm-commons Show documentation
Show all versions of asm-commons Show documentation
Android gradle plugin which inject at compile time method logging (initially forked from Hunter-Debug)
The newest version!
package it.sephiroth.android.library.asm.commons
import org.jetbrains.kotlin.tooling.core.withLinearClosure
/**
* AndroidDebugLog
*
* @author Alessandro Crugnola on 22.02.22 - 18:58
*/
object Constants {
const val ASM_VERSION = BuildConfig.ASM_VERSION
const val BASE_EXTENSION_NAME = "androidASM"
@Suppress("UNUSED_PARAMETER")
fun makeTag(obj: Any): String = "$BASE_EXTENSION_NAME [${obj::class.java.simpleName}]"
}