Acknowledged

crashes on fr965/265 real devices with big png images

Hi, I have another problem with SDK 6.3.0.

Many crashes reported with ERA (and user feedback) only on fr965/265 real devices. I can't reproduce the issue with simulator. 

The crash always occurs on the same line:

		var aodXOffset = (minutes %3).toNumber();
		dc.drawBitmap(aodXOffset, 0, aod);

the bitmap is load from resource in onLayout(dc)

aod = UI.loadResource(Rez.Drawables.aod3) as Ui.BitmapResource;

The bitmap is defined in drawables:

<drawables>
    <bitmap id="aod3" filename="aod3-21.png"  packingFormat="yuv"/>
</drawables>

The picture is an fullscreen png with transparences as mask for AOD-screen. On all devices this is working correct. But since latest update of my watchface with new SDK it crashs on fr965/265 with system error.

I have try to change the packing format to png, but this not helps. Now I have removed the packing format and it seems that helps. But I’m not shure. I’ll wait of new reports.

A similar problem occurs on another watchface with an half size picture with transparences and packingformat YUV and PNG.
Many little pictures with the same packingformat working without problems on fr965.
My guss is, the decompressing on this devices have a problem with SDK 6.3 compressed pictures. But it's only a guss.