Skip to content

Commit

Permalink
Merge pull request #1057 from mikepenz/feature/fix_mp_linking
Browse files Browse the repository at this point in the history
Re-link mpMain to commonMain
  • Loading branch information
mikepenz authored Jan 21, 2025
2 parents 2bb82fd + 3a9db10 commit ab51769
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion aboutlibraries-core/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,9 @@ kotlin {
api(libs.kotlinx.collections)
}
}
val multiplatformMain by creating
val multiplatformMain by creating {
dependsOn(commonMain)
}
val jvmMain by getting {
dependsOn(multiplatformMain)
}
Expand Down

0 comments on commit ab51769

Please sign in to comment.