I configured appcenter and codepush exactly as in the documentation but when I run both on the emulator from android studio and on the device this error appears.

Additional Information
Does this reproduce on a debug build or release build? Both
Does this reproduce on a simulator, or only on a physical device? Both
I integrate it on App.js like this
`class App extends React.Component {
constructor() {
super();
if (Text.defaultProps == null) Text.defaultProps = {};
Text.defaultProps.allowFontScaling = false;
if (TextInput.defaultProps == null) TextInput.defaultProps = {};
TextInput.defaultProps.allowFontScaling = false;
}
render() {
return (
);
}
}
App = codePush(App);
export default App;`
Can anyone please help?
@Adr1ann did you have an old version before? I ran across the same issue when upgrading, but ran react-native start --reset-cache - it worked fine from there!
That was. Thank you very much. @jgking2
Hi @jgking2
Thanks for your find, I'm sure this should help.
@Adr1ann I'm going to close this issue, if you have any questions or other issues, feel free to reopen it.
Most helpful comment
@Adr1ann did you have an old version before? I ran across the same issue when upgrading, but ran
react-native start --reset-cache- it worked fine from there!