Trying to upgrade from Expo 47 to (48 or 49) - Getting the same error

I am trying to update to Expo 49 to get out of a Expo & React Native conflict. Things are fine in development.
But when I try eas build with IOS I get an error:
"

“iOS build failed:
The “Run fastlane” (Build Details — 4ea354bf-3137-4051-aed1-c0acb70a60df — testing — Expo) step failed with an unknown error. Refer to the “Xcode logs” (Build Details — 4ea354bf-3137-4051-aed1-c0acb70a60df — testing — Expo) phase for additional, more detailed logs”

The logs are not helpful.

I have a feeling my babel.config.js file might not be correct:

It is:

module.exports = function(api) {
api.cache(true);
return {
presets: [‘babel-preset-expo’],
plugins: [
“react-native-reanimated/plugin”,
],

};
};

My package.json is:

{
“name”: “testing”,
“version”: “1.0.0”,
“main”: “node_modules/expo/AppEntry.js”,
“scripts”: {
“start”: “expo start”,
“android”: “expo start --android”,
“ios”: “expo start --ios”,
“web”: “expo start --web”
},
“dependencies”: {
Begin @
“expo/vector-icons”: “^13.0.0”,
“firebase/app”: “^0.8.4”,
“firebase/auth”: “^0.20.11”,
“firebase/database”: “^0.14.4”,
“firebase/firestore”: “^3.7.3”,
“google-cloud/translate”: “^7.2.2”,
“react-native-async-storage/async-storage”: “1.18.2”,
“react-native-community/masked-view”: “^0.1.11”,
“react-native-community/slider”: “4.4.2”,
“react-navigation/native”: “^6.0.16”,
“react-navigation/stack”: “^6.3.7”,
End @'s
“axios”: “^1.4.0”,
“crypto-es”: “^1.2.7”,
“expo”: “^49.0.9”,
“expo-av”: “~13.4.1”,
“expo-barcode-scanner”: “~12.5.3”,
“expo-build-properties”: “~0.8.3”,
“expo-constants”: “~14.4.2”,
“expo-device”: “~5.4.0”,
“expo-linking”: “~5.0.2”,
“expo-mail-composer”: “~12.3.0”,
“expo-notifications”: “~0.20.1”,
“expo-sms”: “~11.4.0”,
“expo-status-bar”: “~1.6.0”,
“expo-web-browser”: “~12.3.2”,
“firebase-functions”: “^4.4.1”,
“native-notify”: “^3.0.6”,
“react”: “18.2.0”,
“react-dom”: “18.2.0”,
“react-hook-form”: “^7.40.0”,
“react-native”: “0.72.4”,
“react-native-emoji-selector”: “^0.2.0”,
“react-native-gesture-handler”: “~2.12.0”,
“react-native-paper”: “^5.1.0”,
“react-native-qrcode-svg”: “^6.2.0”,
“react-native-reanimated”: “~3.3.0”,
“react-native-safe-area-context”: “4.6.3”,
“react-native-screens”: “~3.22.0”,
“react-native-svg”: “13.9.0”,
“react-native-url-polyfill”: “^1.3.0”,
“react-native-web”: “~0.19.6”
},
“overrides”: {
“expo-modules-autolinking”: “~1.5.0”,
@expo/config-plugins”: “~7.2.2”,
@expo/prebuild-config”: “~6.2.4”
},
“devDependencies”: {
@babel/core”: “^7.12.9”
},
“private”: true
}

Any thoughts would be appreciated.

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.