I am creating an Android application that queries certain content providers, stores it to a SQLite database, and then periodically pushes the data to the server.
I need to implement it so that it only stores new data. So, for example, if my service queries the SMS content provider every 30 minutes, I would only want to access the SMS messages that were sent in the last 30 minutes.
Any idea how to implement this?
A hackish way I can think of is to query the entire content provider, look at the time stamp, and only add it to the SQLite database if the timestamp is within the last 30 minutes. Is there a better / more efficient way to do this?