Gellért Biró
10/13/2022, 9:18 AMplatform.Network.NWConnection to an actual Kotlin class? I can see classes like platform.Network.nw_connection_t but I am not sure they are the same.Seb Jachec
10/13/2022, 9:32 AMNWConnection is a Swift-only class with a Swift-ier API than nw_connection_t (you can see only Swift is listed as a supported language the top-right of Apple’s documentation for NWConnection). It’s not available to use from Kotlin, which only has Obj-C interoperability afaik. nw_connection_t is the old equivalent you’ll have to useGellért Biró
10/13/2022, 9:34 AM