React-Native搭建報錯:Unable to load script.Make sure

在這裏插入圖片描述

報錯

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

解決方法

方法一

  • 建立android/app/src/main/assets文件夾
  • 執行命令
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
  • 從新執行 react-native run-android

參考文檔:https://stackoverflow.com/que...android

方法二

修改 項目目錄/android/app/build.gradle裏
在這裏插入圖片描述
主要是設置bundleInDebug等於true,使得開發時也會打包index.android.bundle。
參考文檔:https://github.com/facebook/r...git

相關文章
相關標籤/搜索