之前接手的weex项目,现在换框架了,可能weex不会再用了,这里记录一下weex的编译以及运行在安卓 和IOS上的代码,防止以后需要 用到 

mac电脑上

"build": "rm -rf ./dist && rm -rf ./web && webpack --config build/webpack.build.conf.js --progress && rm -rf ./entry",
"copy:ios": "rm -rf ./platforms/ios/weex/ && cp -rf dist/weex  ./platforms/ios/",
"copy:android": "rm -rf ./platforms/android/app/src/main/assets/weex && cp -rf dist/weex ./platforms/android/app/src/main/assets/",


win电脑上

"build": "rimraf ./dist && rimraf ./web && webpack --config build/webpack.build.conf.js --progress && rimraf ./entry",
    "copy:ios": "rm -rf ./platforms/ios/weex/ && cp -rf dist/weex  ./platforms/ios/",
    "copy:android": "rimraf ./platforms/android/app/src/main/assets/weex && cpr ./dist/weex ./platforms/android/app/src/main/assets/weex",

 

weex编译运行

相关文章:

  • 2021-12-22
  • 2021-04-15
  • 2021-06-15
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-04-15
  • 2022-01-05
  • 2022-12-23
  • 2021-10-22
  • 2021-11-07
  • 2021-06-13
  • 2021-07-16
相关资源
相似解决方案