Eddsters
Eddsters

Reputation: 497

React Native - Expo publishing issue

I have this project I have built locally using React native + Expo. I published it, and it said it was successfully published. However in the "builds" area in expo.io, it says "You currently have no builds."

My terminal showing expo-cli My expo.io account

What am I doing wrong here? How do I get my simple test app to show up on App store?

Upvotes: 3

Views: 462

Answers (1)

Alex
Alex

Reputation: 766

"Publishing" a project on Expo just makes that project accessible to other expo clients and other users. You can share the URL of your project and other people can try it out in the Expo Go app or in a browser if supported. If you are trying to distribute your app to an app store, you need to build a standalone app.

Check out the Expo Guide for building standalone apps.

Side note: if you build a standalone app and distribute it on the app store, you can also publish updates using expo publish, and those updates will be downloaded on the standalone apps if various criteria are met.

Upvotes: 0

Related Questions