标签:... build ati -- rtu his tor update struct
准备工作:需要之前配置好vue-cli脚架构,安装好cordova环境。下面开始对vue.js项目进行打包,打包环境为Android。
$ cordova create myApp1 org.apache.cordova.myApp myApp2
其中:
myApp1/www/index.html----->vue/index.html
myApp1/www/js/index.js----->vue/vuex/main.js
var app = {// Application Constructorinitialize: function() {this.bindEvents();},// Bind Event Listeners//// Bind any events that are required on startup. Common events are:// ‘load‘, ‘deviceready‘, ‘offline‘, and ‘online‘.bindEvents: function() {document.addEventListener(‘deviceready‘, this.onDeviceReady, false);},// deviceready Event Handler//// The scope of ‘this‘ is the event. In order to call the ‘receivedEvent‘// function, we must explicitly call ‘app.receivedEvent(...);‘onDeviceReady: function() {app.receivedEvent(‘deviceready‘);},// Update DOM on a Received EventreceivedEvent: function(id) {var parentElement = document.getElementById(id);var listeningElement = parentElement.querySelector(‘.listening‘);var receivedElement = parentElement.querySelector(‘.received‘);listeningElement.setAttribute(‘style‘, ‘display:none;‘);receivedElement.setAttribute(‘style‘, ‘display:block;‘);console.log(‘Received Event: ‘ + id);}};app.initialize();
1)内容拷贝到vue/src/vuex/main.js中
2)onDeviceReady时启动app
onDeviceReady: function () {//app.receivedEvent(‘deviceready‘);appRouter.start(App, ‘app‘)window.navigator.splashscreen.hide()}
终端中进入到vue项目,执行以下命令:
cordova platform add android
终端中进入到vue项目,执行以下命令:
cordova plugin add xxxx
终端中进入到vue项目,执行以下命令:
npm run build
将dist文件夹下的文件,拷贝到cordova/platforms/androd/assets/www目录下 (index.html替代掉原本的)
从终端进入到myApp1/platforms/android/cordova目录下,执行以下命令:
cordova build android //构建apk (这里因为安装的cordova是最新的版本6.5.0, 默认的会适配6.0的Android环境,这里需要安装JDK1.8及以上的版本)
配置JDK环境(这里只对mac os进行记录,Win系统请自行脑补):
cd ~ 进入到 ~ 目录
touch .bash_profile
vi .bash_profile 使用vi编辑器编辑 .bash_profile文件
然后输入 i ,在vi编辑器里面输入 i 的意思是开始编辑。
vi编辑器里面的内容如下:
JAVA_HOME=/Library/Java/JavaVirtualMachines/jdk1.7.0_79.jdk/Contents/Home
CLASSPAHT=.:$JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
PATH=$JAVA_HOME/bin:$PATH:
export JAVA_HOME
export CLASSPATH
export PATH
然后退出vi编辑器使用如下命令:(个人习惯 :wq!回车 )
1. 输入 ese
2. 输入冒号 : wq
3. 保存退出
如果以上修改完毕切正确,那么接下来就是让配置的环境变量生效,使用如下命令:
source .bash_profile
完毕以后查看下当前的java 版本是否正确输入如下命令:
java -version
如果是预想中的1.8,那么恭喜你,你这个时候就可以执行: cordova build android
cordova run android //构建apk,并安装到连接的设备上 (按个人需求)
标签:... build ati -- rtu his tor update struct
原文地址:http://www.cnblogs.com/pengjunhao/p/6803606.html