Skip to content Skip to sidebar Skip to footer

Errno = 13 And How To Debug This More Efficiently?

I'm making an application and when i go from menu to an other activity that display image using the e3roid framework, i allways get this (logcat): D/PhoneWindow( 1562): DebugMonito

Solution 1:

I had the same error some times ago, it was due to a lack of memory. In the emulator logcat and not on my phone (wildfire) it was saying: OutOfMemoryException.

Make sure you use the recycle() nethod to clear bitmap from the memory.


Solution 2:

This can happen if you are using a not supported texture format. Try using a RGB565. Here you can find some info about the issue: http://code.google.com/p/processing/issues/detail?id=391


Post a Comment for "Errno = 13 And How To Debug This More Efficiently?"