Francis Mariano
08/08/2024, 8:50 PMBernd Prünster
08/09/2024, 6:57 AMFrancis Mariano
08/09/2024, 11:30 AMincludeBuild("../library"){
dependencySubstitution {
substitute(module("br.com.me.library:misc")).using(project(":misc"))
}
}
And on file (1) was added implementation(project(":misc))
.
When I build the project I am getting the following error:
Project with path ':misc' could not be found in project ':composeApp'.
Do you have som idea to solve the problem?Bernd Prünster
08/09/2024, 7:53 PMimplementation(project("br.com.me.library:misc"))
. The dependeny subsitution rule takes care of replacing this dependency with ../library/misc
. library is an included build, so these are still separate projects, even though the line is rather blurry and configurations from main app will partially bleed into library. This can cause some mess, which is why we have aligned the build setups throughout all our projects using a custom plugin, so composite builds will always work smoothly