Samuel Bichsel
02/18/2021, 10:59 AMExecution failed for task ':shared:linkDebugFrameworkIosX64'.
> Following dependencies exported in the debugFramework binary are not specified as API-dependencies of a corresponding source set:
Project :dreimultiplatform
Please add them in the API-dependencies and rerun the build.
build.gradle:
ios("ios") {
binaries.withType(org.jetbrains.kotlin.gradle.plugin.mpp.Framework).all {
transitiveExport = true
export(project(":dreimultiplatform"))
}
}
cocoapods {
// Configure fields required by CocoaPods.
summary = "Multiplatform Redux Sample"
homepage = "<https://github.com/dreipol/multiplatform-redux-sample>"
ios.deploymentTarget = "13.0"
frameworkName = "ReduxSampleShared"
}
sourceSets["commonMain"].dependencies {
api project(":dreimultiplatform")
}
Before it used to work. Does anyone had the same problem?ptsiogas
03/16/2022, 10:48 AMSamuel Bichsel
03/16/2022, 10:51 AMptsiogas
03/16/2022, 10:54 AMSamuel Bichsel
03/16/2022, 10:54 AMptsiogas
03/16/2022, 10:57 AMSamuel Bichsel
03/16/2022, 12:02 PMptsiogas
03/16/2022, 12:20 PM