13

I get this error only, when I use bundled js.Before bundled app works properly ,used react native version is 0.19.How to remove this error while bundled please help me

The screen shot is attached below enter image description here

vasavi
  • 1,525
  • 6
  • 21
  • 26

1 Answers1

17

Ensure that your AppDelegate.m file is not registering the React URL as pointing to disk. In 0.19, no on-disk bundle is created when deploying to the simulator. It must fetch the bundle over localhost or another IP.

John Shammas
  • 2,687
  • 1
  • 17
  • 33
  • So We cant test Release build on Simulator? – CreativeManix Feb 26 '16 at 12:26
  • It is an iOS simulator rather than an emulator, and cannot run the ARM CPU instructions used to build a release build for the iTunes store. http://stackoverflow.com/questions/517463/how-can-i-install-a-ipa-file-to-my-iphone-simulator – Ed of the Mountain Feb 26 '16 at 15:47