Ionic 3 - My changes are not reflected when I compile

1

I have several problems with my ionic application. When I modify the views and run the command again

$ sudo ionic cordova run android

The app is installed on my phone but changes are not reflected, something as stupid as changing a word from "Welcome" to "Bienvenid000" ... I still see in the "Welcome" app.

Delete the folder node_modules, uninstall ionic, install the latest version of cordova and ionic and nothing ... (The app is a store) and when I run it in a browser you see the price, when I run it on my android the price can not be seen, it comes out as "undefined".

I have been developing this app for more than a month and nothing had happened to me, yesterday I installed the codova-plugin-facebook, and it started to give me any type. Do you have any ideas that I am doing wrong?

Another question I have is: Why if I have cordova 8, when I run the command:

$ sudo ionic cordova platform add android

I get this:

> cordova platform add android --save
Using cordova-fetch for cordova-android@~7.0.0

"cordova 7" ????

I'll leave you my ionic info:

Greetings

    
asked by Lesty 24.01.2018 в 21:30
source

1 answer

0

Something similar happened to me with a project that I did I have to install:

npm install promise-polyfill --save-exact

and use:

ionic cordova plugin add [email protected] --save --variable APP_ID="<myid>" --variable APP_NAME="<myname>"

remove the android, add it and make the build to the application after installing the above

    
answered by 24.01.2018 / 23:25
source