unable to load script from assets index.android.bundle
解决如下
unable to load script from assets index.android.bundle
This issue helped me resolve the problem in following steps.
(in project directory) mkdir android/app/src/main/assets
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
react-native run-android
现在每次修改代码真机上看效果都需要下面这两步
react-native bundle --platform android --dev false --entry-file index.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
react-native run-android
怎么回事啊?谁告诉下怎么解决,多谢