For some reason transitive `implementation` depend...
# multiplatform
a
For some reason transitive
implementation
dependencies are visible in Android app. E.g. I have the following modules: Multiplatform module
utils-internal
. Multiplatform module
common
with the following setup:
Copy code
kotlin {
    sourceSets {
        commonMain {
            dependencies {
                implementation(project(":utils-internal"))
            }
        }
    }
}
And an Android app with the following setup:
Copy code
android {
   ...
}

dependencies {
    implementation(project(":common"))
}
Now in the Android app I see all the stuff from the
utils-internal
module. Why is it like this?