Skip to content

Latest commit

 

History

History
10 lines (7 loc) · 1018 Bytes

manifest-url.md

File metadata and controls

10 lines (7 loc) · 1018 Bytes

Manifest URL

An Expo app manifest is similar to a web app manifest - it provides information that Expo needs to know how to run the app and other relevant data. Read more in "How Expo Works".

When you publish a project you are given a manifest URL. This is where your app will look for updates in the future. The URL you are given is not directly accessible in the web browser without adding some additional headers or parameters.

For example, the manifest URL for the app with the slug native-component-list published by the user community is https://exp.host/@community/native-component-list. If we want to inspect this in our web browser, we can add /index.exp?sdkVersion=37.0.0 to it. The end result is: https://exp.host/@community/native-component-list/index.exp?sdkVersion=37.0.0.