Maybe a memory issue?

This was a known Android hardware acceleration bug that we had to work-around. This issue was fixed in the newest release build, which you can download here…
http://developer.coronalabs.com/downloads/corona-sdk
[import]uid: 32256 topic_id: 33160 reply_id: 131794[/import]

Android Debug Bridge is a series of programs you can run from the command line and do things with an android device that is plugged into that computer via a USB cable (tethered). You get commands iike:

adb install /path/to/your/app.apk

to install an app you just built with Corona or likewise

adb uninstall com.yoursite.yourapp

(where com.yoursite.yourapp is your app identifer) and the all important:

adb logcat

which dumps out the console log of the device to your terminal screen. You also get a program called ddms (I think) which is a GUI based app, but it can capture screen shots from your device.

Google “install adb for mac” or “install adb for windows” depending on your OS to find instructions on setting it up. [import]uid: 19626 topic_id: 33160 reply_id: 131826[/import]

Thanks robmircale! And by the way, once I updated the problem was fixed! [import]uid: 35535 topic_id: 33160 reply_id: 131843[/import]