android真機執行命令react-native run-android報以下錯誤
阿新 • • 發佈:2019-01-26
執行命令react-native run-android報以下錯誤
unable to load script from assets ‘index.android bundle’ ,make sure your bundle is packaged correctly or youu’re runing a packager serve
(在專案目錄中建立)
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
或者放到package.json中的script中
"android-linux": "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"