You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe what you would like to clarify about Kover
I sucessfully added kover to my Android mutlimodule project as convention plugin (see below). The Kover documentation states multiple times that Kover is able to create a "total report" containing all results from all modules in one report. This is exactly what I want, but I cannot find how to get to this kind of report. Currently each module gets its own report.
An example or more information about that in the documentation would be highly appreciated!
applied to each feature module (JVM/Kotlin-only as well as Android-modules):
class KoverPlugin : Plugin<Project> {
override fun apply(target: Project) {
with(target) {
pluginManager.apply("org.jetbrains.kotlinx.kover")
subprojects {
pluginManager.apply("org.jetbrains.kotlinx.kover")
}
}
}
}
Describe what you would like to clarify about Kover
I sucessfully added kover to my Android mutlimodule project as convention plugin (see below). The Kover documentation states multiple times that Kover is able to create a "total report" containing all results from all modules in one report. This is exactly what I want, but I cannot find how to get to this kind of report. Currently each module gets its own report.
An example or more information about that in the documentation would be highly appreciated!
applied to each feature module (JVM/Kotlin-only as well as Android-modules):
libs.version.toml
app.build.gradle
The text was updated successfully, but these errors were encountered: