Skip to content

Latest commit

 

History

History
31 lines (21 loc) · 669 Bytes

debugging_expo_updates.md

File metadata and controls

31 lines (21 loc) · 669 Bytes

Debugging Expo Updates

This is a condensed version of the expo docs here. Check the official docs if anything does not work.

Local debug iOS build with expo updates

Set the debug flag in terminal and reinstall pods:

export EX_UPDATES_NATIVE_DEBUG=1
npx pod-install

Set flag in project to create a js bundle on every build:

sed -i '' 's/SKIP_BUNDLING/FORCE_BUNDLING/g;' ios/Artsy.xcodeproj/project.pbxproj

Add disableAntibrickingMeasures flag to Expo.plist:

	<key>EXUpdatesDisableAntiBrickingMeasures</key>
	<true/>

Rebuild the app:

bundle exec npx expo run:ios