I tried to upload the latest version of my app but I couldn't able to do the same because of the segment SDK version policy changes, etc. Even though the expo team says that this issue is fixed I'm facing the same error, kindly guide me if I'm doing something wrong. Error Screenshot
I tried the following actions
- Downgrading the app
- Upgrading the app
- Including a few new packages
- doing expo build
- doing eas build
- changing the CLI version
even removed all the packages except the basic packages and removed all the screens, just kept one blank green screen, and published the app in internal testing still got the same error.
package.json
{
"version": "1.1.50",
"main": "node_modules/expo/AppEntry.js",
"scripts": {
"start": "expo start",
"android": "expo start --android",
"ios": "expo start --ios",
"web": "expo start --web",
"eject": "expo eject"
},
"dependencies": {
"@expo/ngrok": "^4.1.0",
"expo": "^45.0.6",
"expo-status-bar": "~1.3.0",
"react-dom": "17.0.2",
"react-native": "0.68.2",
"react-native-reanimated": "~2.8.0",
"react-native-web": "0.17.7",
"standard-version": "^9.5.0",
"standard-version-expo": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.12.9"
},
"private": true
}
App.js
import React from "react";
import { StyleSheet, View} from "react-native";
export default function App() {
return (
<View style={styles.container}>
</View>
);
}
const styles = StyleSheet.create({
container: {
flex: 1,
backgroundColor:"lime"
},
});
please let me know what needs to be changed, Thanks