ptsiogas
03/16/2022, 9:23 AMsourceSets {
val commonMain by getting {
dependencies {
api ("com.myLib:feature:$myFeatureVersion")
}
}
val androidMain by getting {
dependencies {
api ("com.myLib:feature-android:$myFeatureVersion")
}
}
val iOSMain by getting {
dependencies {
api ("com.myLib:feature-ios:$myFeatureVersion")
}
}
}
ptsiogas
03/16/2022, 10:01 AM> Following dependencies exported in the releaseFramework binary are not specified as API-dependencies of a corresponding source set:
com.myLib:feature-ios:$myFeatureVersion
Please add them in the API-dependencies and rerun the build.