cloudpebble - Pebble.js app pulling in the wrong image resource -


i trying create simple app in pebble.js using cloud ide

i have resources loaded (47 of them) colour , black , white image, correct naming conventions. here snippet appinfo.json

{     "file": "images/34_unlockables.png",     "name": "images_34_unlockables_png",     "type": "png" }, {     "file": "images/45_leaderboards.png",     "name": "images_45_leaderboards_png",     "type": "png" } 

when reference image it's name, app pulls in wrong image totally. same if try url well

card.banner('images/45_leaderboards.png'); card.banner('images_45_leaderboards_png'); 

both result in wrong image (and black , white).

has else hit similar issue?


Comments

Popular posts from this blog

qt - Using float or double for own QML classes -

Create Outlook appointment via C# .Net -

ios - Swift Array Resetting Itself -