emada.adame wrote: > Hello all > > So i have a app that runs fine on the emulator but crashes (force > close message as soon as i open the app) on every device i have tested > it on. How can i see whats going on?
Use adb logcat, DDMS, or the DDMS perspective in Eclipse to view the Java stack trace associated with the "force close" dialog. You will need to have your device attached to your development machine via the USB cable for this to work. For production, you could consider using Flurry, DroidDrop, or any of the other data collection libraries to log these exceptions and report them to you from the field. -- Mark Murphy (a Commons Guy) http://commonsware.com | http://twitter.com/commonsguy Android Consulting: http://commonsware.com/consulting -- 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

