Reputation: 1
I would like to install Expo iOS application directly on my device instead of going to review with AppStore.
I been working on an app which is entirely personal application, and I would like to install it directly on my device.
I been using Expo Go for testings, but I want to be able to have it installed on my device as a standalone application that was not published to Appstore.
How could I do that?
Upvotes: 0
Views: 5637
Reputation: 332
Go into your Project directory and open a Terminal. Then just type in:
expo build:ios
Check here:
https://docs.expo.io/distribution/building-standalone-apps
Upvotes: 1
Reputation: 29
Do the following:
expo run:ios
in your expo project, an emulator should come up with your app. You can just ignore it. This was the only way I could find to avoid going through EAS and therefore having to have a $100/year account. Even build:ios
wanted a paid account.ios
directory has been created, open that in Xcode. You should see the phone's name at the top.Preferences -> Accounts
and sign in with your apple dev account (doesn't need to be paid)View -> Navigators -> Project -> $app-name -> Signing & Capabilities
and fill in the team and whatever else is there.run
in Xcode, and the app should be built onto your phone!Some notes:
expo-notifications
dependency for testing on your devicesHappy coding!
Upvotes: 2