I have this code in my app.js file in android and an images folder in my resources:
var win = Titanium.UI.createWindow({
title : "my Name is Reyjohn",
backgroundColor : "#FFFFFF",
exitOnClose : true
})
var img = Titanium.UI.createImageView({
image:"images/Hypedin.png",
height:20,
width:30
});
win.add(img);
win.open();
but its not showing any image in background, where did I do wrong? I am new in titanium, please help