Package org.neotech.plugin.rootcoverage.utilities

Functions

Link copied to clipboard
fun Project.afterAndroidPluginApplied(notFoundAction: () -> Unit = {}, action: (AppliedPlugin) -> Unit)
Link copied to clipboard
fun AndroidComponentsExtension<*, *, *>.assertMinimumRequiredAGPVersion(requiredVersion: AndroidPluginVersion)
Link copied to clipboard
fun FileTree.excludeNonClassFiles(): FileTree

Executes an include match on the FileTree that only includes files with the .class extension.

Link copied to clipboard
fun Project.fileTree(    dir: Any,     excludes: List<String> = listOf(),     includes: List<String> = listOf()): ConfigurableFileTree

Wrapper around Project.fileTree(Map) to use it easier from Kotlin code. Currently only supports the dir, excludes and includes properties.

Link copied to clipboard
fun Project.onVariant(variantName: String, action: (variant: Variant?) -> Unit)