View debug messages on device

Is there any way to see the Corona Debugger messages on the Android device itself? I’ve found that my game crashes sometimes when I test it on my Android, but I cannot replicate the problem in the simulator and cannot see the error message. [import]uid: 151029 topic_id: 27593 reply_id: 327593[/import]

You need to have the Android SDK tools installed, so that you have the command line tool known as “adb” (Android DeBug???). Then you tether your device to your computer (and sometimes there are some hoops to jump through to get your device recognized by adb as a one time setup, you will need to google that…) But once you’re devices is plugged into an USB port on your computer you do the command line command:

adb logcat

and that will spew all the console messages from the device.

[import]uid: 19626 topic_id: 27593 reply_id: 112083[/import]