it.sephiroth.android.library.asm.commons.plugin.AsmPluginExtension.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.plugin
@Suppress("LeakingThis")
abstract class AsmPluginExtension {
/**
* If not enabled the plugin will not perform any transformation
*/
var enabled: Boolean = true
/**
* Enable this plugin for the specified variant(s)
*/
var runVariant: String = ".*"
}