
Originally Posted by
nosila00
That's a really nice lib, but it doesn't solve this problem, it just simplifies the process of updating the tile in run-time.
Well, guess this is just not supported and will be only solved with the run-hammer-time msdn provided solution...
I should have mentioned in my original reply that out-of-the-box wide-tile support for a 7.1 app running on 7.8 or 8.0 isn't possible.
If we look at how to achieve a wide-tile by default with a WP8 app, it uses a chunk of XML in the App Manifest...
Code:
<TemplateFlip>
<SmallImageURI IsRelative="true" IsResource="false">Assets\Tiles\FlipCycleTileSmall.png</SmallImageURI>
<Count>0</Count>
<BackgroundImageURI IsRelative="true" IsResource="false">Assets\Tiles\FlipCycleTileMedium.png</BackgroundImageURI>
<Title>
</Title>
<BackContent>
</BackContent>
<BackBackgroundImageURI IsRelative="true" IsResource="false">
</BackBackgroundImageURI>
<BackTitle>
</BackTitle>
<LargeBackgroundImageURI IsRelative="true" IsResource="false">Assets\Tiles\FlipCycleTileLarge.png</LargeBackgroundImageURI>
<LargeBackContent />
<LargeBackBackgroundImageURI IsRelative="true" IsResource="false">
</LargeBackBackgroundImageURI>
<DeviceLockImageURI IsRelative="true" IsResource="false">
</DeviceLockImageURI>
<HasLarge>True</HasLarge>
</TemplateFlip>
That chunk of XML is not valid in a 7.1 project. Also remember, the 7.8 SDK update introduces no new APIs which means run-time methods like ShellTile.Update are the only option to accessing new platform features.
Something to consider: how many people download an app and immediately pin it to the Start Screen? I download an app, run it at least once to see if it's any good, then pin it if it's useful.