Hi, I have a configuration like the following in ...
# ios
g
Hi, I have a configuration like the following in my `build.gradle.kts`:
Copy code
kotlin {
    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
?
I tried
Copy code
setupApplication("application") {
  baseName = "application"
}
but It seems not to work
s
but my module name is something like
myLongModuleName
.
What do you mean? What problem do you encounter?