Arkadii Ivanov
01/31/2020, 12:05 PMimplementation dependencies are visible in Android app.
E.g. I have the following modules:
Multiplatform module utils-internal.
Multiplatform module common with the following setup:
kotlin {
sourceSets {
commonMain {
dependencies {
implementation(project(":utils-internal"))
}
}
}
}
And an Android app with the following setup:
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?