icerockdev / moko-kswift

Swift-friendly api generator for Kotlin/Native frameworks
https://moko.icerock.dev
Apache License 2.0
348 stars 21 forks source link

Generated Swift.podspec should read deploy target version for xcode 14 #81

Open Alex009 opened 1 year ago

Alex009 commented 1 year ago

Starts from xcode 14 without specific

spec.ios.deployment_target = '**'

compilation of cocoapod will be failed. so we should read deployment target from main podspec and use same target version

Alex009 commented 1 year ago

at now we can use manual set:

kswift {
    iosDeploymentTarget.set("11.0")
}

so it's just improvement