1

I would like to test performance so I do not want to use the development server or any development mode. I just want to install the app to a physical device without going through the Google Play store or Apple. How can I do that?

The docs say that I should do this:

react-native bundle --platform ios --dev false --entry-file index.ios.js --bundle-output iOS/main.jsbundle

That gives me a file. What do I do with that file to get it to my device?

nomad
  • 1,699
  • 5
  • 21
  • 35

1 Answers1

2

If you already built your APK\IPA:

For android you can run: adb install path\to\your\apk (add -r if you want to reinstall)

For ios I'm not sure, but this SO question might help:

Yes, you can install IPA in iPad, first you have to import that IPA to your itunes. Connect your iPad to iTunes then install application just by click on install and then sync.

Community
  • 1
  • 1
atlanteh
  • 5,615
  • 2
  • 33
  • 54