I have a strange problem with my app. It works perfect using the livereload mode ‘ionic run android -l -c’, the problem comes when I try to execute on run mode ‘ioni run android’.
The problem is that in run mode the app cannot load the template, I can see the index.html file but the template cannot be loaded.
How can I see whats happens?
[SOLVED]
The error was that I have got the path to templates beginning with slash so the paths are not relative to the app directory. I have to change “/template/foo.html” to “template/foo.html”.