I just coded the following lines copied from AndExample.
try {
this.collision_sound = SoundFactory.createSoundFromAsset(this.mEngine.getSoundManager(), this, "touch.ogg");
} catch (IllegalStateException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (IOException e) {
Log.d("Error","in creation "+e);
}
this.collision_sound.play();
Now The problem is that when i play the sound it gives me a null pointer exception. Any one can help me with this problem?
