dsukhram wrote: > I am able to view error logs while debugging an app with logcat in > Eclipse. However I have run into issues where my app runs fine on the > emulator but throws errors when I put it on my G2. My question is, > how do I view the errors that it is throwing on my actual device?
The same way as you view error logs on the emulator. Your DDMS perspective in Eclipse should show your device when it is plugged in via the USB cable. Just click on that device and the LogCat pane will show messages from the device. Or, use standalone DDMS, or the adb logcat command at your command prompt. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy _Android Programming Tutorials_ Version 1.0 In Print! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [email protected] For more options, visit this group at http://groups.google.com/group/android-developers?hl=en

