In my application, I have some local images. I can see my images when testing in the Google developer tools using ionic serve and even in the genymotion simulator with Android 4.4.4 and 4.2.2. but when I install my application on a real Android device (I try to use the Samsung Galaxy S3 and Samsung Galaxy Ground Neo), I do not see my images.
My folder structure is as follows:
and in my book.html I will try the following URL to download the image:
<img src="app/book/images/icon.png"> <img src="../../images.icon.png">
I also move icon.png to the root folder inside index.html and try:
<img src="icon.png">
but that will not work.
source share