Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Expo - eas build android command throw Entity not authorized error

I do not know why my bundling command:

eas build --platform android

keeps returning this error:

CombinedError: [GraphQL] Entity not authorized: AccountEntity[bf4d40b0-5121-4c66-96ed-6be99586c703] (viewer = RegularUserViewerContext[2200e4b1-4483-428d-87f3-0643e995c424], action = READ,
ruleIndex = -1)

like image 359
Victor Matthew Avatar asked Apr 12 '26 14:04

Victor Matthew


1 Answers

I had the same problem. What happened was that I cloned a project from a friend who had tried to build, so the build command added his build config to the app.json

One of the values was the projectId at the bottom of the file.

It had an Entity not authorized because that projectId didn't belong to my Expo account.

To fix it, I just deleted the extra property in the app.json and built the project again. This time it would generate a projectId that belongs to my account.

like image 123
ricardolopezb_ Avatar answered Apr 15 '26 16:04

ricardolopezb_