I am using the built-in camera in my Android app and having problems getting the path to the last captured image.
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
....
}
Intent data
contains a thumbnail of the last captured image, not the actual image saved to the SD card. So, how do I get the path to the actual full size image?
Thanks in advance.