None of these values work for launching the photo gallery in the phonegap app for Android.
When a method getPictureis called with any of these values, it does not pull out the photo gallery.
I am building an application using cloudgroup build services
Please, help,
sample code -
function getPhoto(source) {
alert("getting photo");
// Retrieve image file location from specified source
navigator.camera.getPicture(onPhotoURISuccess, onFail, { destinationType: destinationType.FILE_URI, sourceType: source });
}
source
share