Cyrille QUÉMIN
09/03/2019, 12:33 PMrusshwolf
09/03/2019, 12:38 PMCyrille QUÉMIN
09/03/2019, 12:58 PMCyrille QUÉMIN
09/03/2019, 1:14 PMtransitiveExport=true
would do the trick:
iosArm32("ios32") {
binaries {
framework(){
transitiveExport=true
}
}
}
But I still don’t see my mpp dependency in the resulting frameworkCyrille QUÉMIN
09/03/2019, 1:19 PMexport project(":prj")
Now both of my modules symbols are present in the resulting framework. Just for reference:
iosArm32("ios32") {
binaries {
framework(){
export project(":prj")
transitiveExport=true
}
}
}