Solving issue in Expo EAS for generating an iOS build with error code 35

Tiempo de lectura: < 1 minuto

We are going to learn how to solve the problem today:

Authentication with Apple Developer Portal failed! Security returned a non-successful error code: 36
Woman and beach - pexels

This error occurs when we try to create the build for iOS from Flutter and ask for credentials, which we input correctly but get an error.

We need to change the build generation command to this:

 build --profile production --platform ios

Add –non-interactive at the end, we will continue.

Leave a Comment