Fuse version: 0.32.0 (build 9613)
Mac OSX
Hi! When I try my app in local preview or Android Preview work perfect but when I export with:
fuse build --target=Android --run
The images don’t appear!!!
Here an example of the code:
<App>
<JavaScript>
var Observable = require("FuseJS/Observable");
var Images = Observable();
function Image(Photo, Title) {
this.Photo = Photo;
this.Title = Title;
}
Images.add(new Image("http://imgs.abduzeedo.com/files/articles/fuse-interview/image01.jpg","Image Title"));
module.exports = {
Images: Images
};
</JavaScript>
<ClientPanel>
<Each Items="{Images}">
<StackPanel>
<Rectangle Height="100%" Width="100%">
<ImageFill Url="{Photo}" StretchMode="UniformToFill" />
</Rectangle>
<Text Value="{Title}" />
</StackPanel>
</Each>
</ClientPanel>
</App>
```
I test it in a S7. Thanks!
How can I solve this?