Local images Img src Still not working in rc.4

I know this topic has been solved in the past but none of the solutions have helped me. The only way I could get this to work, was passing the images through the css as background image, but thats not the case when i try to load images on html.
I have many local images linked as:

<img src= "assets/img/perfil.jpg">

Which is supposed to be the right way to do it, but it only works in google chrome. When i release the apk the images just dont show.

Ive also tried:

<img src= "../assets/img/perfil.jpg">

<img src= "img/perfil.jpg">

but cant make it work either. :confused:

I just solved this. The right way in rc.4 is

<img src="./assets/img/cocina.jpg"/>

Hope anybody else goes through this problem.