I have upgrade my app from rc3 to r4, in the browser (ionic serve) it’s ok.
When I try to run in the device (ionic run android --device) an alert saying that file:///android_asset/www/index.html was not found. I’m attaching a print, it’s strange because below the alert it’s possible to see that the view has been loaded.
i had a similar error last week try 2 things:
1 delete the android folder from the platforms folder and build from scrach
2 in the comfig.xml change the <content src="index.html"/> to point to your index file
when i had the same error it was because it was pointing to <content src="../index.html"/>
This error occurs because the loadUrlTimeout which is the time that android will wait until your app send to it your files, is too short and your controller is too heavy to respond with a 200 status in this interval.
Put on your config.xml this: <preference name="loadUrlTimeoutValue" value="700000"/>