A camera that can be shot with Yukimura Sanada.
Original source of cordova-plugin-sanada-camera
- This project uses nodejs
- The native source is stored under the
src
directory - Run
npm run build
creates a file for cordova-plugin under thedist
directory
- Android
- navigator.sanadacamera.start
function onSuccess(uri) {
// URI of photo taken
alert(uri);
}
function onError() {
alert('onError!');
}
navigator.sanadacamera.start(onSuccess, onError);