ivan.savytskyi
04/09/2019, 3:28 PMmain.framework
Kris Wong
04/09/2019, 3:32 PMiosX64("ios") {
compilations.main {
outputKinds "FRAMEWORK"
}
binaries {
framework("$ios_framework_name")
}
}
ilya.matveev
04/10/2019, 9:01 AMcompilation.outputKinds
DSL is deprecated in 1.3.30 and replaced by the binaries block. So actually the example above creates two frameworks: the first one using the old compilation.outputKinds
DSL and the second one using the binaries block. You can just remove outputKinds
and declare the framework using the binaries block only:
iosX64("ios") {
binaries {
framework("$ios_framework_name")
}
}
Kris Wong
04/10/2019, 1:31 PM