We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
At around 2:04 of the Fetching data from an HTTP API lesson, where you say const { manifest } = Expo.Constants;
const { manifest } = Expo.Constants;
This leads to a runtime error which reads "Cannot read property 'Constants' of undefined"
Expo.Constants is inspectable in Chrome debugging so it's not like Constants is unavailable:
This is how the error looks in the iOS simulator:
Could you shed some light on this error?
The text was updated successfully, but these errors were encountered:
declare the following:
import Constants from 'expo-constants';
const { manifest } = Constants;
Sorry, something went wrong.
No branches or pull requests
At around 2:04 of the Fetching data from an HTTP API lesson, where you say
const { manifest } = Expo.Constants;
This leads to a runtime error which reads "Cannot read property 'Constants' of undefined"
Expo.Constants is inspectable in Chrome debugging so it's not like Constants is unavailable:
This is how the error looks in the iOS simulator:
Could you shed some light on this error?
The text was updated successfully, but these errors were encountered: