Skip to content

Commit

Permalink
Merge pull request DroidKaigi#742 from Corvus400/bug/fix_build_failes…
Browse files Browse the repository at this point in the history
…_just_compile_kover_problem

🔧 Addressed an issue where Kover fails to execute.
  • Loading branch information
takahirom authored Aug 23, 2024
2 parents f1da417 + a82966a commit e038c84
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,10 @@ class KoverEntryPointPlugin : Plugin<Project> {

rootProject.subprojects {
if (this@subprojects.name == target.name) return@subprojects
this@subprojects.pluginManager.apply(koverPlugin)
// https://github.com/DroidKaigi/conference-app-2024/issues/485#issuecomment-2304251937
this@subprojects.beforeEvaluate { // wrap with beforeEvaluate
this@subprojects.pluginManager.apply(koverPlugin)
}
target.dependencies.add("kover", this@subprojects)
}

Expand Down

0 comments on commit e038c84

Please sign in to comment.