On Thu, Apr 05, 2012 at 03:11:37PM +0530, s.rawat wrote: > The exception is coming form inside the >>> > *com.facebook.katana.service.method.VideoUpload.getRealPathFromURI > > that is a part of android.jar I guess.
The null pointer exception, however, is not. Use Log.d statements at the point where it appears to crash. Put Log statements all over the place in that area. If a variable is assigned somewhere near the crash, Log it. If it's used, Log it. Sooner or later, you'll find something like, TAG: Currently in [method], just set foo to 42; foo = null (where TAG is whatever you set for TAG, e.g., initials, etc.). When you find that, you've either found the problem, or at the very least, you'll be very, very close.... Later, --jim -- THE SCORE: ME: 2 CANCER: 0 73 DE N5IAL (/4) MiSTie #49997 < Running FreeBSD 7.0 > [email protected] ICBM/Hurricane: 30.44406N 86.59909W Do not look into waveguide with remaining eye! Android Apps Listing at http://www.jstrack.org/barcodes.html -- 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

