Reputation: 18343
Running win10 IOT core on the raspberry pi 2 and I'm wondering if the following is possible:
1) have a headless app running that is called 'version checker'. in addition, have multiple other headless apps running.
2) if a new version of an app is available, it downloads the package
3) once new package is downloaded, it installs the app
If this is possible, where should I start?
Upvotes: 5
Views: 457
Reputation: 787
If you are not against writing the app in HTML/JS, you could write it as a Hosted Web App. It's really similar to a Chrome / FirefoxOS app, which caches your code on the device, and hits your site to see if there are any changes since it last loaded, and update itself if it does.
Here's a blog that I wrote a while back.
Upvotes: 0