Is the docker image deprecated?

Is the docker image android:api-28-ndk deprecated since 1/13/2023? FOr example in config,yml:

version: 2
jobs:
  build:
    working_directory: ~/code
    docker:
      - image: circleci/android:api-28-ndk

If so, which image should be used?
During the Download Dependencies stage

      - run:
          name: Download Dependencies
          command: |
            ./gradlew androidDependencies
            sudo apt-get update --fix-missing
            sudo apt-get install rename

The following error. appears

Err:5 https://packages.cloud.google.com/apt cloud-sdk-buster InRelease
  The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53DC80D13EDEF05
Reading package lists... Done
W: GPG error: https://packages.cloud.google.com/apt cloud-sdk-buster InRelease: The following signatures couldn't be verified because the public key is not available: NO_PUBKEY B53DC80D13EDEF05
E: The repository 'https://packages.cloud.google.com/apt cloud-sdk-buster InRelease' is not signed.
N: Updating from such a repository can't be done securely, and is therefore disabled by default.
N: See apt-secure(8) manpage for repository creation and user configuration details.

Yes, it’s been deprecated for awhile. There’s notices around but the main page you can look at is here: Migrating to next-gen Convenience Images - CircleCI

The replacement image can be found here: GitHub - CircleCI-Public/cimg-android: The CircleCI Android Docker Convenience Image.

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.