skip to Main Content

I recently clone a project of react-native-expo after fixing some issue when I’m trying to create a build it give me an error which is:

You don't have the required permissions to perform this operation.

Entity not authorized: AccountEntity[28acedc0-1ad3-4d4c-95be-048c5931487c] (viewer = RegularUserViewerContext[79c3a180-b551-4a89-a213-efb039f527c0], action = READ, ruleIndex = -1)

Request ID: e842ee8d-bc17-4c68-910d-63c07f33d464

I don’t know why I’m getting this issue I perform these steps

  1. eas login
  2. eas build --platform ios

2

Answers


  1. Ensure you are logged in as the owner set in the app.json. This comment solved the issue https://github.com/expo/eas-cli/issues/1324#issuecomment-1232851517

    Login or Signup to reply.
  2. this error means that you are logged as owner. remove this in app.json :

       "extra": {
          "eas": {
            "projectId": "Your project id"
          }
        }
    
    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search