In my program for Win8 Store i want to use a Small Logo on Live Tile. I set image uri into application manifest rebuild and launch it. But i don't see Small logo on tile in the bottom left-hand corner. I'm using next XML for creating the Live Tile
<tile>
<visual branding="logo">
<binding template="TileWideSmallImageAndText04">
<image id="1" src="bla bla bla.png" alt="alt text"/>
<text id="1">BLA BLA</text>
<text id="2">BLA BLA</text>
</binding>
<binding template="TileSquareText02">
<text id="1">BLA</text>
<text id="2">BLA</text>
</binding>
</visual>
</tile>
What am I doing incorrect to set the small logo on the Live Tile?