# STORE_CREDENTIAL_REJECTED

**What it means.** Apple or Google refused the connected developer credential.

**What to do.** The key was probably revoked, expired, or lacks permission. Ask the owner to generate a new one in their developer console and connect it again. Do not retry with the same credential.

- HTTP status: 403
- Retryable after applying the fix: no

Every failure from the CLI or an MCP tool has this shape:

```json
{
  "ok": false,
  "code": "STORE_CREDENTIAL_REJECTED",
  "message": "Apple or Google refused the connected developer credential.",
  "fix": "The key was probably revoked, expired, or lacks permission. Ask the owner to generate a new one in their developer console and connect it again. Do not retry with the same credential.",
  "file": "<where to edit, when known>",
  "retryable": false,
  "docs": "https://docs.uarpie.app/errors/STORE_CREDENTIAL_REJECTED"
}
```

Apply `fix` (edit `file` when it is given), then run the same command again.
