Michal Harakal
10/03/2020, 8:52 PMCannot create binary debugFramework: binary with such a name already exists
ios {
binaries {
framework {
export(project(":shared:core"))
export(project(":shared:domain"))
export(project(":shared:presentation"))
export(project(":shared:data"))
export(project(":shared:backend:dukecon"))
}
}
}
I can add a namePrefix to framework definition like this binaries.framework("DukeconSdk"),
but it actually creates second binary artifact in build
folder, one with prefix containing exported modules, but cocopad used the original one anyway. What I am missing? I would like to have only one framework containg exports .."native.cocoapods"
plugin comming a cross …