private GalleryPathVO getPicturesPath()

in src/android/CameraLauncher.java [654:660]


    private GalleryPathVO getPicturesPath() {
        String timeStamp = new SimpleDateFormat(TIME_FORMAT).format(new Date());
        String imageFileName = "IMG_" + timeStamp + getExtensionForEncodingType();
        File storageDir = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_PICTURES);
        storageDir.mkdirs();
        return new GalleryPathVO(storageDir.getAbsolutePath(), imageFileName);
    }