I modified the libwebcore.so in my Android rootfs and now I want to debug it but the browser crashes instantly if I start with

am start -n com.android.browser/.BrowserActivity

If I'm trying to start with -D switch it hangs and says:

Application Browser (process com.android.browser) is waiting for the debugger to attach

But when I attach the gdbserver to the browser pid nothing happens.

So is there a way to debug the browser if it crashes after you start it?

link|improve this question
feedback

1 Answer

up vote 0 down vote accepted
  1. Place an infinite loop at the earliest possible point inside libwebcore.so (or at least early enough that you know the point-of-crash will not have executed yet.)
  2. Attach gdbserver to PID
  3. Use GDB to break the infinite loop
  4. Debug
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.