Reputation: 8405
What are difference between expo build and upload. Does upload cmd
still return a standalone app. I realized if i run on Expo Client will work fine but when build a standalone version, the application does not behave the same again.
Upvotes: 1
Views: 1003
Reputation: 392
The commands build
and upload
are very different ones. The build
command (Expo documentation on building) builds a standalone app, while the 'upload' command (Expo documentation on uploading) uploads the standalone app that you've built to the App Store or the Play Store (Your Choice).
Upvotes: 2