On Wed, Aug 10, 2011 at 1:56 PM, bob <[email protected]> wrote: > What if my app crashes when it's not in debug mode? Is there a way to > see what went wrong? >
If you are testing locally: logcat. For 'live' errors you need something like ACRA or the Android Market error reporting (less useful). Or, if you can get in touch in users, you can have them send their logs using Log Collector or similar apps. Alternatively, you can try implementing something like logpush to get logs remotely from users on demand (your app will need the permission to access log files): https://github.com/koush/logpush -- 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

