5

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?

Silvia Doomra
  • 947
  • 8
  • 16
yamspog
  • 18,173
  • 17
  • 63
  • 95

1 Answers1

0

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.

Jonny Lin
  • 727
  • 4
  • 11