main.com.welltech.gradle_plugin.extension.RecompositionLoggerGradleExtension.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recomposition-logger-plugin Show documentation
Show all versions of recomposition-logger-plugin Show documentation
This plugin makes it easy to debug composable functions by adding logs to each function.
The plugin also highlights composable functions during recomposition
package com.welltech.gradle_plugin.extension
import java.io.File
abstract class RecompositionLoggerGradleExtension {
abstract var logFile: File?
/**
* available: none, implementation, api, compileOnly. Default - implementation
*/
abstract var supportLibDependency: String?
abstract var enabled: Boolean?
abstract var tag: String?
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy