weex-buildtool v0.0.1
Readme
Installation
Nodejs
Please make sure you have Nodejs installed. v6.x is recommended while v4.x is the minimium supported version.
node-gyp
if your
$ node-gyp --versionoutput less then 3.4.0 or no node-gpy installed in your system , please run below cmd to install or upgrade node-gyp
$ npm install -g node-gypInstall
$ npm install -g weex-buildtoolAndroid
To generate a Android .apk file, there are several steps you should follow, SEE MORE.
iOS
To generate a iOS .ipa or .app file, there are several steps you should follow, SEE MORE.
Quick Start
Initial your weex project and download dependencies.
$ weex init && npm installThen, initial build project
$ weex-buildtool build initBuild iOS package and run in a real device or simulator. (as well as Android)
$ weex-buildtool run iosHandbook
Commands
# init
$ weex-buildtool build init [android|ios|all] [-u url]
# build, genrate a apk/ipa/app package, default to -r
$ weex-buildtool build [android|ios|html|all] [-d|-r]
# emulate, run the package in real device or simulator, default to -d
$ weex-buildtool emulate [android|ios|html|all] [-d|-r]
# run, equals to build&emulate, default to -d
$ weex-buildtool run [android|ios|html] [-d|-r]
# tips: -d, debug | -r, release
# -u url, specific a third party template project,
# see http://xxxxxCustom Package Infomation
You can custom package name, app name, icon, splash, etc. as you want at config/config.<platform>.js.
Certificate & Signature
Certificate and signature are supported in release package.
Make sure you have owned a valid cert or keystore, and edit config/config.<platform>.js.
Custom Android/iOS Native Code
While a default native project are provided, you can also custom it or create a completely new one for more amazing purpose!
However, you must obey some rules, for Android, for iOS.
Our default project are hosting at Android iOS, you can fork and custom without limitation.
9 years ago