禁止JS Server在react-native run-android命令

时间:2017-03-08 16:09:13

标签: react-native windows-7

  • 我使用CMD
  • 执行我的react-native项目的脱机捆绑

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/

  • 由于捆绑是离线完成的,我不希望JS服务器在运行命令react-native run-android后每次都启动。

有没有办法避免启动JS服务器

1 个答案:

答案 0 :(得分:2)

在内部,react-native run-android启动打包程序并在gradlew上运行installDebug任务。

要运行installDebug,请在项目根目录下运行:

cd android && ./gradlew installDebug