I just subscribed to EAS so that I could easily build my bare-workflow expo app. First, I used eas build
to build my app, followed by eas submit
. I was successfully able to submit my app and get a version on test flight.
The problem came when I tried to submit another build to the app store.
You've already submitted this version of the app. Versions are identified by Build Numbers (expo.ios.buildNumber in app.json). If you're submitting an Expo project built with EAS Build, increment the build number in app.json and build the project again.
I had bumped my app.json ios.buildNumber
but it wasn’t recognized on subsequent builds. My first build was 1.0.0, and here’s what I tried:
"ios": {
"buildNumber": "1.0.1",
"supportsTablet": true,
"bundleIdentifier": "com.pakaplace.reddit-alerts"
},
"ios": { "buildNumber": "2", "supportsTablet": true, "bundleIdentifier": "com.pakaplace.reddit-alerts" },
Same error each time I rebuilt via eas build
and submitted. How can I properly resubmit new versions so that I can test on test flight before submitting to the app store.