I am trying to build a simple react native app by using expo android app but I am getting these 2 error log always - Module AppRegistry is not a registered callable module and Cant find variable: Constants.
import React, { Component } from "react";
import { StyleSheet, Text, View, Image } from "react-native";
export default class App extends Component {
render() {
return (
<View style={{ flex: 1, justifyContent: "center", alignItems: "center" }}>
<Text>Hello, world!</Text>
</View>
);
}
}
I am using my mobile hotspot in my laptop.