Hi everyone, how to add “-Xobjc-generics” with coc...
# multiplatform
o
Hi everyone, how to add “-Xobjc-generics” with cocoapods framework creating?
k
Copy code
tasks.withType<KotlinCompile> {
    kotlinOptions.jvmTarget = "1.8"
    kotlinOptions.freeCompilerArgs += "-Xobjc-generics"
}
o
Ok, thanks, will try!