GarouDan
04/13/2019, 9:36 PMkotlin {
xcode {
setupApplication("application")
}
}
but my module name is something like myLongModuleName
.
What I’ve seen is that the generated output when running the buildForXcode
task is something like myLongModuleName.kexe
or myLongModuleName.kexe.dSYM
.
How could I change these output output names? Maybe for something like application.kexe
?setupApplication("application") {
baseName = "application"
}
but It seems not to worksvyatoslav.scherbina
04/15/2019, 8:02 AMbut my module name is something likeWhat do you mean? What problem do you encounter?.myLongModuleName