I'm new with React Native, and I want to create a deployable version of the app for iOS and Android.
I saw in the oficial web page how to use an offline bundle for iOS, and it works fine. I generated the offline bundle with the following command without any problem: react-native bundle --dev false --entry-file index.ios.js --bundle-output ios/main.jsbundle --platform ios
And I did the following change, and it worked fine on iOS. http://facebook.github.io/react-native/docs/running-on-device-ios.html#using-offline-bundle
However, I'm not able to do the same for Android, and I can't find any example of it on the internet. I executed the following command and the offline bundle was generated correctly. react-native bundle --dev false --entry-file index.android.js --bundle-output android/main.jsbundle --platform android However, I don't know how to indicate to the app the location of this generated bundle.
thoughts?