i have an .png image so according to my requirment changed the size, but now in the logcat i'm getting filenotfound exception even though the image is in asset folder, and also there is no capital letter, spaces between it. i could not make out why this occurs any idea?
// background layer: another image
CCSprite background = CCSprite.sprite("shipe150.png");
// scale the image (optional)
background.setScale(1.5f);
// change the transform anchor point (optional)
background.setAnchorPoint(CGPoint.make(0,0));
logcat error
07-13 10:59:07.928: W/System.err(3017): java.io.FileNotFoundException: shipe150.png
07-13 10:59:07.928: W/System.err(3017): at android.content.res.AssetManager.openAsset(Native Method)
07-13 10:59:07.939: W/System.err(3017): at android.content.res.AssetManager.open(AssetManager.java:315)
07-13 10:59:07.939: W/System.err(3017): at android.content.res.AssetManager.open(AssetManager.java:289)