Hello everyone, I’m working with .NET Core on the ...
# multiplatform
a
Hello everyone, I’m working with .NET Core on the backend and have added SignalR to update the UI with new values as they are added. For mobile, I’m using Kotlin Multiplatform (KMP) and plan to use Ktor for WebSocket functionality, but I haven’t found resources that work for both platforms. Does anyone know of a site or article that discusses this?
a
Ktor websocket is straightforward for android/ios https://ktor.io/docs/client-websockets.html#example https://github.com/ktorio/ktor-documentation/tree/3.0.3/codeSnippets/snippets/client-websockets Not familiar with SignalR , but most likely you need to parse it's protocol manually bc you will receive raw messages (Text/Binary)
🔥 1
a
Thanks man.