tags:

views:

19

answers:

0
        Intent camera = new Intent(MediaStore.ACTION_IMAGE_CAPTURE);
     //Using a File so it overwrites previous camera shot
        File pictureFile = new File(cameraImagePath);
        camera.putExtra(MediaStore.EXTRA_OUTPUT, Uri.fromFile(pictureFile));
        startActivityForResult(camera, TAKE_PICTURE);

I'm using this code to get a camera shot which is then uploaded to an imageboard. The problem is that on some phones GPS locations are recorded in the EXIF data and users are unknowingly revealing their locations. Is there some value I can add to the intent to tell the camera app not to record any EXIF data?

(Using 1.6 API's also)