All of a sudden I’m getting the following error:
iOS build failed:
Starting from Xcode 14, resource bundles are signed by default, which requires setting the development team for each resource bundle target.
To resolve this issue, downgrade to an older Xcode version using the “image” field in eas.json, or turn off signing resource bundles in your Podfile: expo/Podfile at cfbf29525fa7b25bb80aa7ccb10a434551f1e423 · expo/expo · GitHub
Learn more: Build server infrastructure - Expo Documentation
Not sure the best way to resolve this. If I change the eas.json where do I put it? I think the image I want to use should be macos-monterey-12.4-xcode-13.4
Here is my current eas.json:
{
"cli": {
"version": ">= 0.53.1",
"promptToConfigurePushNotifications": false
},
"build": {
"development": {
"distribution": "internal",
"android": {
"gradleCommand": ":app:assembleDebug"
},
"ios": {
"buildConfiguration": "Debug"
}
},
"preview": {
"distribution": "internal"
},
"production": {}
},
"submit": {
"production": {}
}
}