Help please! Android device error: Failed to load resource: net::ERR_FILE_NOT_FOUND

I’ve just burned 2 hours trying to fix this. The app is running on an Android device and can’t find the ionic icons font files so, for example, the back button arrow does not display. I’m using chrome://inspect/#devices to debug this and the console error message is:

Failed to load resource: net::ERR_FILE_NOT_FOUND
file:///android_asset/www/ionicons//ionicons.woff

In the inspect tool, I can see the file file:///android_asset/www/ionicons//ionicons.woff.

I’ve got the whitelist plugin installed.

Anyone know what could be the problem? Any ideas how I can debug this?

Solved. It was the double forward slash. Changed it to single.

Where did you make this change? I am having the same problem but can’t find where to change “file://”

My sass file:

from

$ionicons-font-path: “ionicons/” !default;

to

$ionicons-font-path: “ionicons” !default;