Unable to load script.Make sure you're either running a metro server (run 'react-native start' ) or that your bundle 'index.android.bundle' is packaged correctly for release.
我本身這裏報錯緣由是沒有找到index.android.bundle。react
react-native bundle --platform android --dev false --entry-file index.android.js --bundle-output android/app/src/main/assets/index.android.bundle --assets-dest android/app/src/main/res
參考文檔:https://stackoverflow.com/que...android
修改 項目目錄/android/app/build.gradle裏
主要是設置bundleInDebug等於true,使得開發時也會打包index.android.bundle。
參考文檔:https://github.com/facebook/r...git