I am currently writing an android app with a REST Server Side.
Right now i trying to figure out how i am gonna do the "conversation" between the client and the server.
So what i started to think about is the unique id for each client in the server database. I am trying to avoid int/long/double value identifier and use string value.
In C# there's Guid object that generates a string which is being used as a identifier for clients.
That object doesn't exist in java so that's what i am trying to figure out.
In short , i am trying to decide how to configure the clients unique id in my database that would be used in the android client side and in the far future in iPhone client.
Thanks