thevery
08/05/2018, 10:35 PMthevery
08/05/2018, 11:50 PMtask copyFramework() << {
if (hasProperty("konan.configuration.build.dir")) {
def srcFile = tasks['compileDebugIos_x64KotlinNative'].outputFile
def targetDir = getProperty("konan.configuration.build.dir") + "/Greeting.framework"
copy {
from srcFile
into targetDir
}
}
}
but I still need to rename ios.framework
ilya.matveev
08/06/2018, 4:49 AMbaseName
property:
sourceSets.main.component {
baseName.set("Greeting")
}