Now that were using phonegap 2.0
If your using the camera api and need to keep the pictures in the album...
Ensure you add the
saveToPhotoAlbum: true
To the phonegap camera options !
Now that were using phonegap 2.0
If your using the camera api and need to keep the pictures in the album...
Ensure you add the
saveToPhotoAlbum: true
To the phonegap camera options !
I have been looking to add an option to the camera service, but there's no option to add any other option.
Please, where do you add it?
What option do you want to add?
Hello! You would need to download source code (for Eclipse or xCode project), find cordova.js file and replace line
codevar saveToPhotoAlbum = !!options.saveToPhotoAlbum;/code with the following
codevar saveToPhotoAlbum = true;/code
Does this allow for the picture to go to the Album as well as the app?
var saveToPhotoAlbum = true;
Where would I add this? in javascript after sending?
You could find more description here: http://docs.phonegap.com/en/3.3.0/cor...
According Marina reply, you should export eclipse or xCode project and replace this code in cordova.js file.