79427541

Date: 2025-02-10 15:26:52
Score: 0.5
Natty:
Report link

That error is usually caused by a missing / misconfigured sk.. key in your app.{json,config.js,config.ts}'s plugins.

Double check it's properly added to the config plugins:

{
  "expo": {
    "plugins": [
      [
        "@rnmapbox/maps",
        {
          "RNMapboxMapsDownloadToken": "sk.ey.."
        }
      ]
    ]
  }
}

Make sure it has the scope for "DOWNLOADS:READ"

Download scope for mapbox API token

and then rebuild your development client(s)

eas build --profile development --platform android

eas build --profile development-simulator --platform ios

Reasons:
  • Probably link only (1):
  • Has code block (-0.5):
Posted by: Nelloverflow