eas build fails with "The Bundle Identifier "org.name.[myappname]" is not available to team ... Change it in your app config and try again

Viewed 53

I have an expo managed app. I am trying to do a build using EAS. I have already registered my device and created the app on Apple's App Store Connect. However when I try to run the following command:

eas build --profile development --platform ios

I keep getting the following error and for the life of me I can't figure out what is causing it:

The bundle identifier org.name.frontend is not available to team ..., change it in your app config and try again. UnexpectedAppleResponse: An attribute in the provided entity has invalid value - An App ID with Identifier 'org.name.myapp' is not available. Please enter a different string.

I have no idea where the "org.name" piece is coming from. I never used that and now it is throwing errors. Any suggestions? (my bundleidentifier in app.json is not this value)

1 Answers

You need to do a search and find the instances of bundle identifiers in the error message in project.pbxproj file under YourApp/ios/[YourApp].xcodeproj.

Related