Cannot find circleci/android@3.1.0 in the orb registry. Check that the namespace, orb name and version are correct

Cannot find circleci/android@3.1.0 in the orb registry. Check that the namespace, orb name and version are correct.

Running into this in our organization’s projec.

Used this example from CircleCI Developer Hub - circleci/android and still runs into the same same error

version: '2.1'
orbs:
  android: circleci/android@3.0.0
jobs:
  test:
    executor:
      name: android/android_machine
      resource_class: large
      tag: default
    steps:
      - checkout
      - android/create_avd:
          avd_name: myavd
          install: true
          system_image: system-images;android-31;default;x86_64
      - android/start_emulator:
          avd_name: myavd
          no_window: true
          restore_gradle_cache_prefix: v1a
      - android/run_tests
      - android/save_gradle_cache:
          cache_prefix: v1a
workflows:
  test:
    jobs:
      - test