Does anyone have an example of including a subproj...
# multiplatform
b
Does anyone have an example of including a subproject that's an mpp project into an mpp project?
Trying to do this, which syncs okay, but IntelliJ really doesn't seem to understand where public classes from subproject are
Copy code
kotlin {
    sourceSets {
        commonMain {
            dependencies {
                implementation project(':subproject')
erg nvm that does work. class I wanted just wasn't made public 🤦‍♂️
d
🙂