Solved it with
import java.net.Socket suspend fun sendStuff_() { val message = "text" val socket = Socket("10.0.2.2", 8091) socket.outputStream.write(message.toByteArray()) }