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
Asked
Active
Viewed 5,359 times
13
-
Are you on iOS or Android ? – G. Hamaide Feb 18 '16 at 10:39
-
4not following the answer. what did you do to get pass this error? – jojo Apr 24 '16 at 08:56
-
I have the same problem here, not only when bundling. – Peter G. Jul 04 '16 at 15:20
1 Answers
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
-
-
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