解决: Unable to load script from assets ‘index.android.bundle’

解决: Unable to load script from assets ‘index.android.bundle’_第1张图片
1_YNacmy6-MSt_rSxVIuGZ5Q.png
  • 解决步骤
  1. 进入android目录下 创建assets文件夹
    android/app/src/main/assets

  2. cd android
    ./gradlew clean

  3. 如果只有 index.js 执行以下命令

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

  1. 如果是分开的 index.android.js 和 index.ios.js 执行以下命令

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

你可能感兴趣的:(解决: Unable to load script from assets ‘index.android.bundle’)