Reputation: 1
I am trying to post data on to the server from my android app.if connection is lost between server and client i need to store these values into a list and resend these values by continuously trying for a connection .
Upvotes: 0
Views: 148
Reputation: 6334
You could use sqlite to store this data and then use AsyncTask doInBackground() to try to check for internet connection and to send this data back to ur server.
Upvotes: 1