2015-11-24 14:25:43 -06:00
|
|
|
console.log(window.Native);
|
|
|
|
|
2015-11-24 14:37:34 -06:00
|
|
|
|
|
|
|
if(Native.Camera.installed()) {
|
|
|
|
console.log('Camera installed');
|
|
|
|
} else {
|
|
|
|
console.log('Camera not installed');
|
|
|
|
}
|
2015-11-24 14:25:43 -06:00
|
|
|
Native.Camera.takePicture().then(function(resp) {
|
|
|
|
console.log('Got picture');
|
|
|
|
}, function(err) {
|
|
|
|
console.log('ERROR');
|
|
|
|
});
|