nativescript-vue error when debugging in android application from cli

1

I am starting in nativescript vue to develop mobile apps, but at the moment of running the application for android it tells me that it does not find the project, I already have installed all the necessary (sdk, vue cli, etc), that believe it can be , someone has happened to him, how can I solve it.

here is the project in my directory

this is the package.json

{
 "name": "tuwallet",
 "version": "1.0.0",
 "description": "A native application built with NativeScript-Vue",
 "author": "jose20161996 <[email protected]>",
 "license": "MIT",
 "scripts": {
             "build": "webpack --env.tnsAction build",
             "build:android": "npm run build -- --env.android",
             "build:ios": "npm run build -- --env.ios",
             "debug": "webpack --watch --env.tnsAction debug",
             "debug:android": "npm run debug -- --env.android",
             "debug:ios": "npm run debug -- --env.ios",
             "watch": "webpack --watch --env.tnsAction run",
             "watch:android": "npm run watch -- --env.android",
             "watch:ios": "npm run watch -- --env.ios",
             "clean": "rimraf dist"
 },
"dependencies": {
                 "vue-router": "^3.0.1",
                 "vuex": "^3.0.1",
                 "nativescript-theme-core": "^1.0.4",
                 "nativescript-vue": "^1.3.1",
                 "tns-core-modules": "~3.4.1"
 },
"devDependencies": {
                  "babel-core": "^6.26.0",
                  "babel-loader": "^7.1.4",
                  "babel-plugin-transform-object-rest-spread": "^6.26.0",
                  "babel-preset-env": "^1.6.1",
                  "copy-webpack-plugin": "^4.5.1",
                  "css-loader": "^0.28.11",
                  "extract-text-webpack-plugin": "^3.0.2",
                  "fs-extra": "^5.0.0",
                  "nativescript-vue-externals": "^0.2.0",
                  "nativescript-vue-loader": "^0.1.5",
                  "nativescript-vue-target": "^0.1.0",
                  "nativescript-vue-template-compiler": "^1.3.1",
                  "node-sass": "^4.7.2",
                  "ns-vue-loader": "^0.1.2",
                  "optimize-css-assets-webpack-plugin": "^3.2.0",
                  "rimraf": "^2.6.2",
                  "sass-loader": "^6.0.7",
                  "vue-template-compiler": "^2.5.16",
                  "webpack": "^3.11.0",
                  "webpack-synchronizable-shell-plugin": "0.0.7",
                  "winston-color": "^1.0.0"
 }
}
    
asked by jose miguel jara 07.09.2018 в 18:58
source

1 answer

0

I already found the solution, executing the npm run clean command in the project directory, then npm run watch:android is executed and it works, I personally use my mobile to see the app.

    
answered by 07.09.2018 / 21:27
source