Anbox Cloud 1.20.1 has been released

Introduction

The Anbox Cloud team is pleased to announce the release of Anbox Cloud 1.20.1.

Please see component versions for a list of updated components.

New features & improvements

  • A new amc image sync command is available to explicitly trigger download of an image from the image server.
  • The Anbox Management Service (AMS) derives instance architecture from the architecture of the selected image instead of the Application Binary Interface (ABI).
  • Android security updates for December 2023 (see Android Security Bulletin - December 2023 for more information).
  • The Android WebView has been updated to 120.0.6099.43.
  • amc returns better error details when the AMS client is not registered to the LXD cluster.
  • When an instance is being created, better status messages that give information on the steps of instance creation are displayed. These status messages are cleared once the instance moves to running status.
  • In the AMS HTTP API, the ErrorMessage field is moved from the types.Image to the types.ImageVersion object.

Bugs fixed

  • Post an Anbox Cloud appliance upgrade, streaming fails because the stream agent and gateway could not communicate with each other.
  • Instances are not able to start the nested Android LXD container.
  • Base instances are available for deletion on the Instances list page of the web dashboard.
  • The web dashboard allows to edit immutable applications, for example, an application synchronised from the application registry.
  • LXD charm fails in api-relation-changed hook.
  • A session that has an error status is stuck with a connecting indicator instead of displaying the error details.

Known issues

Since 1.20.0, Android 11 instances fail to start with pure software rendering (i.e., without any GPU attached) because of a missing library. This will be fixed in 1.20.2.

Affected users can solve the issue by installing the missing package in a pre-start hook:


#!/bin/sh -ex

if [ "$CONTAINER_TYPE" = "regular" ]; then

exit 0

fi

apt update

apt install --no-install-recommends -y libgl1-mesa-dri

Upgrade instructions

See Upgrade Anbox Cloud or Upgrade the Anbox Cloud Appliance for instructions on how to update your Anbox Cloud deployment to the 1.20.1 release.

2 Likes