Ash Archin
Ash Archin

Reputation: 451

React native on XCode build successful but stuck at '100% on simulator

I tried to build my expo project on XCode so I ejected that and open in XCode using xed ios. but when I tried to build it and run it show's me that build was successful but on simulator it stuck at '100%' and wont run. also on XCode I receive this:

"expo-updates must be configured with a valid update URL or scope key." 

enter image description here

how can I solve this issue?

Upvotes: 2

Views: 485

Answers (1)

Sateesh Yemireddi
Sateesh Yemireddi

Reputation: 4399

It is an expo issue, the solution found is:

Sign in to your expo account in expo-cli and it will configure expo-updates properly when you eject. You can fix this on an already ejected project after signing in by running expo eject --no-install.

Or

Check JWrubel comments for the same issue below.

I was able to get around this issue without doing expo login by editing ios/<AppName>/Supporting/Expo.plist and adding a key for EXUpdatesURL like so:

<key>EXUpdatesURL</key>
<string>https://example.com</string>

This causes the update check to fail, but the build to succeed. I tried setting EXUpdatesEnabled to false and EXUpdatesCheckOnLaunch to NEVER, but I didn't find those had any impact on the process.

Upvotes: 1

Related Questions