I am trying to develop a PC application in java to do synchronization of data between PC and android. I want to know the best way to do it. My android app has a database and I want to sync it with a PC application. Can anyone help me with a way to do it?
Share
I think that it would be easy to write a server program listening on a local port on PC, and then a simple client program on Android, connecting to the server program, and sync data using plain socket. this requires the server&client programs are in the same subnet(like through wifi).