-1

I have to build an app that can show a list of events e.g. cinema listings that will work either online and offline. I need to know the best way to send updates to the list/array of events when a user is online without having to push updates in the google play store as they get added/updated daily

I am fairly new to this particular problem, I have made several apps in the past but they were purely informational updating once or twice a quarter or used webviews to online calendars (which isn't an option if the user needs to see a stored list when offline)

Ideally, I just need a way to check if there are any new events and store them in the array or update a textview if there is.

begs89
  • 1
  • 2

1 Answers1

1

You will need a webservice for this. Call the API from your application to get upddated data from your server.

Prashant Sable
  • 1,003
  • 7
  • 19