Hi, I’m trying to migrate artifact generation to <...
# kotlin-native
s
Hi, I’m trying to migrate artifact generation to new experimental DSL,
kotlinArtifacts
. I found that new way doesn’t register
embedAndSignAppleFrameworkForXcode
gradle task. How can I execute
embedAndSignAppleFrameworkForXcode
task with new DSL? or tell me how to register the gradle task
embedAndSignAppleFrameworkForXcode
.
k
New KN artifacts DSL is for assembling final artifacts from your kotlin code. embedAndSign task is for integration between kotlin project and Xcode project. There is no way to use it together at the moment. You can make embedAndSign task by your own though
s
Thank you, I understand. Please tell me the source code to define embedAndSign. I want to reference it to make my own task.
s
Appreciate it!