Reputation: 60
While executing ionic run android --device --verbose
, there is nothing happens. It logs the below message and nothing happens. ionic compile works though.
ConfigXml.setConfigXml path~to~my~project resetContent=true, errorWhenNotFound=false
ionic info yields the below information
Anyone has any idea what happens here?
Upvotes: 3
Views: 3674
Reputation: 7
please check compiled api is updated in your sdk manager.
Upvotes: 0
Reputation: 767
I thing the steps below can help to solve your problem:
Make sure you added a platform to your project
ionic platform add android
Once you added the platform. then copy the contents from "www" folder then past on "platforms/android/assets/www" folder. Make sure replace all files other than folder "cordova-js-src" and files "cordova.js", "cordova_plugins.js".
then try to run using cordova
cd {YOUR_PROJECT_DIR}/platforms/android/cordova [run/build]
Upvotes: -1
Reputation: 183
i have some problem the reason from Node Version downgrade to 4 Version.
Upvotes: 0
Reputation: 369
I had the same problem and I also downgrade my node...
My system information:
You only have to:
brew unlink node
brew install homebrew/versions/node012 --without-npm
I don't want brew to install npm package, that is why I use --without-npm
Upvotes: 2
Reputation: 336
try to uninstall nodejs v5.0.0 & install nodejs v4.2.1 I was facing the same problem but in Windows 8. It just showing no error and nothing happens. Reverting nodejs version do the trick for me.
Good Luck!
Upvotes: 22