So I'm calling the Camera Intent like so,

    Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
        camera.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(new
File(Util.tempImgFile)));

As I watch the Debug tab in Eclipse as soon as that intent is called
my application is terminated and the debugger is disconnected, thus I
cannot stop the application at any breakpoint after that intent is
called. Is there a way to work around that so I can hit any
breakpoints after that call?

Thanks,
Chad

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to