@ willjhoward, if you haven’t already figured this one out, I might be able to help. (When I was trying to figure out how to get the ADB logcat thing installed and working on my Mac, I did come across this post, but since there was no reply, I had to look elsewhere.)
ADB logcat (and other ADB tools) come as part of the Android SDK. If you haven’t installed Android SDK, you need to fetch it from here: http://developer.android.com/sdk/installing.html
Follow the installation instruction, and install Android SDK Tools plus Android SDK Platform-tools (by selecting it from the Android SDK Manager.) I believe you don’t need to install any of the Android APIs (because Corona build process takes care of it.)
And then, once installed, hook your Android device to your dev machine. I use Mac, so I launch Terminal.app next, then change the directory to where I have platform-tools, which looks something like this on mine:
cd desktop/androidsdk/platform-tools
After that, all I have to do is type this to start the ADB Logcat: ./adb logcat
If you use Windows, the command you use will be slightly different (i.e., you don’t need ./ part), but you should be able to follow the instructions found on Android developer site to get to the ADB logcat without too much trouble.
I hope this helps.
Naomi
[import]uid: 67217 topic_id: 20340 reply_id: 100627[/import]