What could be a reason for the lack of availabilit...
# multiplatform
k
What could be a reason for the lack of availability of
embedAndSignAppleFrameworkForXcode
task? I’m using
Kotlin 1.5.31
and simply I can’t see this task in my
shared
module.
I have iOS declared like that:
Copy code
ios {
    binaries {
        framework {
            baseName = "shared"
        }
    }
}
h
Its only visible when Gradle is executed with all env variables provided by Xcode.
👍 1