I wrote a server application in C and a client application in Java for android, I’m using byte streaming to communicate. How can I improve this communication protocol? Is there a cross platform communication protocol, like JSON, using structs?
Share
I would use TCP as a communication protocol.
I would use a text format such as JSon as a data format using UTF-8 character encoding.
I would make the API as simple as possible.