I'm porting an application from C# to Android and I need some help to decide which service type i'd need to use on Android to achieve the same result.
Currently theres 2 seperate application. An updater and a client. The updater polls the webserver for updates every 5 seconds. Whenever an update is available it downloads it then warns the client that there's new content available.
The client then displays the content onscreen.
Note: This software will be run on a android player and its sole purpose is to run these 2 applications. Nothing more. There will be no user interaction with it.
So my question is what service would I need to use for this?
Kind Regards, Niek