How to have the Camera Intent put a photo into internal storage?
android, photos, storage
Solution
Internal storage is private for each app -- the third-party camera app has no rights to write to your internal storage.
Problem
I have been at this all day and can't seem to get it to work. It use to work before according to the previous person who worked on it. ``` cameraIntent = new Intent("android.media.action.IMAGE_CAPTURE"); String imageName = CustomApp.getTimeStamp(0) ; String path = CustomApp.getCurrentActivity().getDir("images", Context.MODE_WORLD_WRITEABLE).getPath()+File.separator+imageName; File file = new File(path) ; Uri img = Uri.fromFile(file) ; Intent passthruDataIntent = new Intent(); cameraIntent.putExtra(MediaStore.EXTRA_OUTPUT, img); CustomApp.getCurrentActivity().startActivityForResult(cameraIntent, CustomConstants.REQUESTCODE_CAMERA); ``` Similar code has been posted on here, but it doesn't seem to work on my nexus 4 on 4.2.2. I tried external storage and it works fine then. Any insight on why it might not be working would be very helpful. Thanks.