When importing live projects with dependency substitution, the the substituted projects are not visible and editable.
The point of doing this is so that you can manage the code in both at the same time.
The projects should show up under separate entries at the root, so they are easily distinguishable.
I usually use the Project Files view, because it shows them and shows the correct KMP folders.
Example import substitution:
includeBuild("../my-project-dir") {
dependencySubstitution {
substitute(module("com.example.core.thingy:core-thingy")).using(project(":core-thingy"))
}
}
When importing live projects with dependency substitution, the the substituted projects are not visible and editable.
The point of doing this is so that you can manage the code in both at the same time.
The projects should show up under separate entries at the root, so they are easily distinguishable.
I usually use the
Project Filesview, because it shows them and shows the correct KMP folders.Example import substitution: