Ah, found a solution: You need to add the develop...
# multiplatform
s
Ah, found a solution: You need to add the development team in the build settings: in
iosApp/build.gradle.kts
Copy code
plugins {
    id("org.jetbrains.gradle.apple.applePlugin") version "222.3345.143-0.19"
}

apple {
        //<https://plugins.jetbrains.com/plugin/17098-kotlin-multiplatform-mobile-for-appcode/docs/kmm-project-structure.html#iOS>
        iosApp {
            buildSettings.DEVELOPMENT_TEAM("yourteam")
            ...