Merge branch 'feature/tmall-preInstall' into 'release/20190925'

Support Tmall preInstall

Extract So from apk

See merge request !609815
tree: 57eafc271fabc63b76c3c43a21140548538a43c8
  1. .github/
  2. android/
  3. bin/
  4. build/
  5. examples/
  6. ios/
  7. packages/
  8. pre-build/
  9. runtime/
  10. scripts/
  11. test/
  12. weex_core/
  13. .babelrc
  14. .eslintignore
  15. .eslintrc
  16. .gitignore
  17. .gitmodules
  18. .muppignoresubmodule
  19. .rat-excludes
  20. .travis.yml
  21. CHANGELOG.md
  22. CODE_OF_CONDUCT.md
  23. CONTRIBUTING.md
  24. Dangerfile
  25. dangerfile-android.js
  26. Dangerfile-ios
  27. dangerfile-ios.js
  28. dangerfile-jsfm.js
  29. dangerfile-output.js
  30. dangerfile-static-check.js
  31. dangerfile.js
  32. DISCLAIMER
  33. Gemfile
  34. Gemfile.lock
  35. HOW-TO-BUILD.md
  36. index.html
  37. LICENSE
  38. NOTICE
  39. package-lock.json
  40. package.json
  41. POSSIBLE-NOTICES-FOR-BIN-DIST
  42. README.md
  43. RUN-RAT.md
  44. SCRIPTS.md
  45. start
  46. WeexSDK.modulemap
  47. WeexSDK.podspec
README.md

Weex

A framework for building Mobile cross-platform UI.

Build Status

platformstatus
AndroidDownload
iOSPod version Carthage compatible
Mobile Webnpm version

Support Android 4.1 (API 16), iOS 8.0+ and WebKit 534.30+.

Note: Please note the above download distribution is only for users' users' convenience. Weex Release is always in the format of source code.

For Windows

Please INSTALL Git for Windows and run all the following commands in git-bash.

Meet Weex

  • Install Weex Playground App to see examples we already written.
  • If you want to write a demo, install weex-toolkit in Node.js 8.0+ and
  • Run weex init to generate & start a simple project in an empty folder.
  • Follow the instructions in the project README.
  • Enjoy it.

Use Weex

Android

  • Prerequisites
  • Run playground, In Android Studio
    • Open android/playground
    • In app/java/com.alibaba.weex/IndexActivity, modify CURRENT_IP to your local IP
    • Click (Run button)
  • Add an example

Runtime

On Android Platform , Weex code is executed in weex_js_engine which is based on JavaScriptCore engine.

iOS

  • run playground

    • Prerequisites
    • Run playground
      • cd ios/playground
      • pod install
      • Open WeexDemo.xcworkspace in Xcode
      • Click (Run button) or use default shortcut cmd + r in Xcode
      • If you want to run the demo on your device, don't need to modify CURRENT_IP manually. In DemoDefine.h(you can search this file by Xcode default shortcut cmd + shift + o), modify CURRENT_IP to your local IP
    • Add an example
  • integrate to your application

    • CocoaPods

      Add the following line to your Podfile:

      pod 'WeexSDK'
    

    run pod install

    • Carthage

      Add the following line to your Cartfile:

      github "apache/incubator-weex"
    

    Run carthage update, and you should now have the latest version of WeexSDK in your Carthage folder.

Mobile Web

see weex-vue-render.

Scripts

See SCRIPTS.md for more information.

IDE Plugin & Syntax Highlight & DevTool

Weex team have developed a DevTool to help you to improve the debugging efficiency.

See more stuff on this wiki page

Weex Community

Contributing

See Weex Contributing Guide for more information.