Often my programs simply crash. I can't see anything in the LogCat or otherwise useful information elsewhere to find out what's gone wrong. The only thing I see is some kind of exception. This is unacceptable and makes Android programming nearly impossible. I'm sure there must be some additional help to debugging, but after weeks of searching, nothing.

Does anyone have hints on how to find a bug in a program that simply crashes?

General question I know, but without an answer, I'm going to have to quit trying to develop apps for Android. I can't spend weeks of searching for every simple mistake.

link|improve this question

37% accept rate
1  
Thanks, when I see an answer to something I'll keep that in mind. – Mitch Jul 24 '10 at 21:19
feedback

4 Answers

I can't see anything in the LogCat or otherwise useful information elsewhere to find out what's gone wrong.

Look harder. Every crash generates something in LogCat.

The only thing I see is some kind of exception.

That would be "what's gone wrong". The stack trace will show you the line of code where your bug resides, and the exception will give you information about what has gone wrong.

This is unacceptable and makes Android programming nearly impossible

Tens of thousands of other developers do not have a problem with this. And, since the same thing occurs in Java applications (exceptions and stack traces), millions of developers worldwide have not had a problem with this. Logged exceptions with stack traces are also used in many other languages and are considered a rather commonplace technique in software development.

link|improve this answer
5  
"Every crash generates something in LogCat." -- and if you add more log statements to your code, it will generate even more! – MatrixFrog Jul 23 '10 at 6:18
No. Definitely this is not true. I can sometimes run the program and get NOTHING in the LogCat. NOTHING. Othertimes it's very full, but nothing relevant. I'm calling a library routine, the call never returns but crashes and there is NOTHING generated when it crashes. So NO, definitely this is not a true statement. – Mitch Jul 24 '10 at 21:23
The exception is very general sounding "Runtime Exception" and there is no extra info besides this title. Maybe there's a place to find out more info besides there was an exception and it happened at runtime, but that's why I'm asking the question. Stating that "tens of thousands" have no problem assumes you have these numbers and keep track, which I doubt, so it comes off as an Ad hominem attack and even if not is irrelevant to the situation. I get a crash in a library call, there's nothing in the log and no additional information. Is there a place where I can find this additional info? – Mitch Jul 24 '10 at 21:59
1  
I found some additional information embedded in the exception. I see nothing in LogCat so I can only guess that not all problems inside Android produce a LogCat message. Maybe there's a debug version of Android that's more verbose? Either way, I found info embedded inside the exception and that led me to an answer in someone else's posting. It'd be nice if I had a way to dig that info out of the exception without writing code to extract it from the exception. – Mitch Jul 31 '10 at 6:34
1  
@Mitch: the exception and its stack trace get dumped to LogCat, assuming your debugger does not interfere with this process. – CommonsWare Aug 1 '10 at 6:55
show 5 more comments
feedback

There's also the actual Eclipse debugger. If you just run the program with the debugger until it crashes, you may not see a particularly helpful stack trace. But if you add a breakpoint or two in the code that comes just before the crash, you can step through carefully and figure out what's going wrong.

Also, although I'm still pretty new to Android development, my experience is that most of the mysterious crashes in my code are essentially ClassCastExceptions. Look carefully for all the places where you're casting something from one class to another, and make sure you're not assuming something is of a type that it's actually not.

link|improve this answer
I'll keep an eye out for ClassCastException s, but I'm not seeing that right now. I'm generally pretty careful being a C++ programmer where casting is almost universally a bad idea. But I will be careful of this. Thanks. – Mitch Jul 24 '10 at 21:25
1  
It's generally a bad idea in Java too, but it comes up sometimes in Android programming, like textView = (TextView) findViewById(R.id.textview1) – MatrixFrog Jul 25 '10 at 20:41
feedback

Actually, I am not sure your are experiencing a normal crash. It might be an ANR or some similar phenomenon that locks everything up. That would probably make you see less logs from your application. I think the debugging support for android is quite classy compared to some other environments I've worked with.

link|improve this answer
feedback

It sounds to me as if you have an error in your android installation somewhere. The LogCat sometimes gets confused and disconnects from the virtual device (talked about here: getting blank screen in logcat ).

But your problem sounds much more severe. I know it's a pain, but consider making a fresh installation of your android development system (including a brand-new Eclipse install).

I have had similar problems, and a fresh install helped quite a bit (especially after a few upgrades--things can get rather confused).

Good luck.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.