Click here to Skip to main content
15,881,803 members
Articles / Internet of Things / Raspberry-Pi

How To Push Updates to Raspberry Pi UWP Apps in Prod

Rate me:
Please Sign up or sign in to vote.
5.00/5 (2 votes)
27 May 2018CPOL5 min read 6.8K   4  
How to push updates to Raspberry Pi UWP apps in prod

Updating Raspberry Pi apps in the field can be tricky. This post covers the general problem and addresses some specific side-loading problems you are likely to run into.

Image 1

The (Re)Deployment Problem

Imagine you have an IoT app like a kiosk, digital sign, or temperature reader that you want to productize and ship onto small (inexpensive) devices like Raspberry Pis. If you're already in the Microsoft ecosystem or you want features like BitLocker, Automatic Updates, or Enterprise Data Protection (the ability to remote wipe a lost device), then the Windows IoT operating system is an obvious choice (plus the Windows IoT Core edition is free).

But once you've developed your app and are ready to ship, how do you quickly and consistently get your app (or more likely a set of foreground and background apps) onto devices? More importantly, when you have a bug fix or feature enhancement, how do you push it out to devices in the field?

The Initial Image

In most regards, the Microsoft documentation on building Windows IoT images is excellent. After installing some prerequisite software, you use a set of provided command line tools to create numerous XML files that all together describe an image. You then compile those XML files into a multi-gigabyte .ffu image file that you can write to an SD Card using the Windows IoT Core Dashboard software (or better yet, the flashsd command line tool).

Now you can plug your newly flashed SD cards into a bunch of Raspberry Pis and send them all over the world. However, unless you're Chuck Norris, you're going to need to ship bug fixes to those Raspberry Pis, and visiting each one is out of the question. There are two primary options: store-based, and side loading.

Store-Based Updates

Microsoft allows developers to publish Windows IoT apps to the Microsoft Store, at which point it will push app updates down onto device and install them automatically. This option is extremely secure and reliable. However, there are several downsides.

  1. There's a special sign up process that can be time consuming. I imagine it's gotten better, but it took me several weeks to get approved.
  2. Background apps require extra work to publish because each one requires a special empty Foreground UWP app that developers must submit to the store (see Special Instructions for Headless Apps).
  3. It's tricky to get multiple dependent apps to publish simultaneously as a package.
  4. Updates require an approval process and on top of that can take up to 24 hours to get pushed to devices.

Side Loading Updates

If you need complete control over the deployment process, for instance to ensure that multiple dependent packages upgrade in a certain order, then there is an additional option. You can manage your own app deployments using the PackageManager API along with a special .appxmanifest permission that allows side-loading app updates. Naturally, you'll need a server for hosting your app update files and informing your clients that an update is available. You then create a background UWP app that monitors your server and downloads and installs packages when it detects changes.

While this option has the benefit of more control, keep in mind the following disadvantages:

  1. Hand rolling the side loading code opens the attack surface for your app.
  2. You'll have to maintain a dedicated server and SSL certificate.
  3. It may be more brittle as the entire process could break if your URL changes, SSL certificate expires, or something breaks in your upgrader background app

Matthijs Hoekstra beautifully documents one way to do this in his blog post Auto updater for my side loaded UWP Apps. His approach involves sending notifications to the updater background app using the UWP App-To-App Communication approach I described in a Visual Studio Magazine article I published last year.

If you prefer having a single app both monitor changes and install updates, thus isolating all deployment responsibilities into a single app, you may want to take a look at the SirenOfShame.Uwp.Maintenance project of the Siren of Shame UWP App. If you check out that code, you'll see that I download the app to a temporary directory (perhaps a new UWP requirement), provide a lot of logging, and use certificate pinning for better security. I designed that project to be generic enough that you could copy-paste it into a new project and only make a few changes.

Regardless, if you combine side-loading and image creation, you are likely to run into problems. Here are the problems and solutions I've found.

Problems

Package Failed Updates

ErrorCode = -2147009293
System.Runtime.InteropServices.COMException (0x80073CF3):
Package failed updates, dependency or conflict validation.

You'll get this error when you include an appx in your image instead of an appxbundle. Including an appx is what they tell you to do in Step 4 of Lab 1b when they say "Generate app bundle: Never". The problem is you can only side-load an appxbundle if you originally installed an appxbundle. To get around this, ignore the directions and set "Generate app bundle" to "Always" when you generate your app to include in your image. When you run the newAppxPkg command, you can just reference your appxbundle instead of your appx and everything works exactly the same from there.

Removal Failed

ErrorCode = -2147009286
System.Runtime.InteropServices.COMException (0x80073CFA): Removal failed. 
Please contact your software vendor.

You'll get this error if you try to uninstall a package via PackageManager.RemovePackageAsync() that had been installed into an image as an appx. Instead, always include an appxbundle instead of an appx when you build images (see above).

Install Failed

C#
ErrorCode = -2147009287
System.Runtime.InteropServices.COMException (0x80073CF9): Install failed. 
Please contact your software vendor.

You'll get this error if you try to sideload via .UpdatePackageAsync() an app that you initially included in an image but then you subsequently F5 deployed over top of from Visual Studio. The solution here is to put a try/catch around your call to .UpdatePackageAsync() and if there's a COMException, try to do an uninstall and then an install.

Summary

I've spent numerous hours getting this process right and I hope this document saves someone some time. If so, please share your IoT deployment experience in comments or ping me @lprichar.

This article was originally posted at http://www.leerichardson.com/feeds/posts/default

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
United States United States
Lee is a Microsoft MVP and a prolific writer, speaker, and youtuber on .Net and open source topics. Lee is a Solution Samurai at InfernoRed ( http://infernoredtech.com). When not coding he enjoys running, mountain biking, smoking brisket, electronics, 3D printing, and woodworking. He is active on twitter where you can reach him @lprichar ( https://twitter.com/lprichar).

Comments and Discussions

 
-- There are no messages in this forum --