IOS run problem after upgrade to expo 36 (wrong bundler address)

  1. SDK Version: 36.0.0
  2. Platforms(Android/iOS/web/all): iOS

I’ve got an ejected app which builds fine in Xcode, but as soon as it’s launched on either a simulator or a physical device, it will crash after a few seconds of the splash screen.
(I took above from another post on this forum as my case is exactly the same as what yasgraham wrote)

The app is trying to connect to the package bundler on http://localhost:8081
However, the bundler is here http://localhost:19001

To run expo I execute: expo start -c
Log from running expo:

Expo DevTools is running at http://localhost:19002
Starting Metro Bundler on port 19001.
Your JavaScript transform cache is empty, rebuilding (this may take a minute).
Tunnel ready.
Your native app is running at expe2646ee9672648cd95762d4e7f1d7126://192.168.0.8:19000
Logs for your project will appear below. Press Ctrl+C to exit.

Log from launching the app:

2020-05-07 11:28:45.047533+1000 worker[43720:3766647] [] nw_socket_handle_socket_event [C1.1:2] Socket SO_ERROR [61: Connection refused]
2020-05-07 11:28:45.050881+1000 worker[43720:3766647] [] nw_socket_handle_socket_event [C1.2:2] Socket SO_ERROR [61: Connection refused]
2020-05-07 11:28:45.052576+1000 worker[43720:3766647] Connection 1: received failure notification
2020-05-07 11:28:45.052971+1000 worker[43720:3766647] Connection 1: failed to connect 1:61, reason -1
2020-05-07 11:28:45.053207+1000 worker[43720:3766647] Connection 1: encountered error(1:61)
2020-05-07 11:28:45.064454+1000 worker[43720:3766647] Task <F671D904-7AF0-41F1-BA7B-F74561B73E62>.<1> HTTP load failed, 0/0 bytes (error code: -1004 [1:61])
2020-05-07 11:28:45.071888+1000 worker[43720:3766647] Task <F671D904-7AF0-41F1-BA7B-F74561B73E62>.<1> finished with error [-1004] Error Domain=NSURLErrorDomain Code=-1004 "Could not connect to the server." UserInfo={NSUnderlyingError=0x600001d0bc60 {Error Domain=kCFErrorDomainCFNetwork Code=-1004 "(null)" UserInfo={_kCFStreamErrorCodeKey=61, _kCFStreamErrorDomainKey=1}}, NSErrorFailingURLStringKey=http://localhost:8081/status, NSErrorFailingURLKey=http://localhost:8081/status, _kCFStreamErrorDomainKey=1, _kCFStreamErrorCodeKey=61, NSLocalizedDescription=Could not connect to the server.}
2020-05-07 11:28:45.115 [info][tid:main][RCTBridge.m:145] Class RCTDevMenu was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.118 [info][tid:main][RCTBridge.m:145] Class RCTAsyncLocalStorage was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.118 [info][tid:main][RCTBridge.m:145] Class EXModuleRegistryBinding was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.118 [info][tid:main][RCTBridge.m:145] Class EXDisabledRedBox was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.119 [info][tid:main][RCTBridge.m:145] Class EXDisabledDevMenu was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.154 [info][tid:main][RCTBridge.m:145] Class EXScopedReactNativeAdapter was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.154 [info][tid:main][RCTBridge.m:145] Class EXDevSettings was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.154 [info][tid:main][RCTBridge.m:145] Class EXScopedBridgeModule was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.154 [info][tid:main][RCTBridge.m:145] Class EXUtil was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.154 [info][tid:main][RCTBridge.m:145] Class EXUpdates was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.154 [info][tid:main][RCTBridge.m:145] Class EXNotifications was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.155 [info][tid:main][RCTBridge.m:145] Class EXStatusBarManager was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.155 [info][tid:main][RCTBridge.m:145] Class EXDisabledDevLoadingView was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.155 [info][tid:main][RCTBridge.m:145] Class EXAppState was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.160 [info][tid:main][RCTBridge.m:145] Class EXScopedEventEmitter was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.160 [info][tid:main][RCTBridge.m:145] Class EXHomeModule was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.161 [info][tid:main][RCTBridge.m:145] Class EXScreenOrientation was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.161 [info][tid:main][RCTBridge.m:145] Class EXLinkingManager was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.161 [info][tid:main][RCTBridge.m:145] Class RNCWebViewManager was not exported. Did you forget to use RCT_EXPORT_MODULE()?
2020-05-07 11:28:45.212 [fatal][tid:main] No bundle URL present.

Make sure you're running a packager server or have included a .jsbundle file in your application bundle.

any help would be highly appreciated