Hi. I am adding the following style via Javascript to individual html elements. (In my case when an image has no content I want to set the display to 'none' so the 'not loaded' graphic cant be seen and the layout is arranged accordingly)
myImageElement.style.display = 'none';
This works fine on Preview within C3 resulting in...
<img class="image" src="" style="display: none;">
..but when I export to ANdroid and inspect via the remote inspector the elements don't get modified and simply read:
<img class="image" src="">