Hello Mykola.
Using the TakePicture feature of OutSystemsNow, you can customize some behavior of what happens on the device. Open the OutSystemsNow module and search for
According to the documentation, getPicture allows you to define a source type. Default is Camera.PictureSourceType.CAMERA, but you can use Camera.PictureSourceType.PHOTOLIBRARY and it should go to the recent pictures. So, in the getPicture, add another parameter (after destinationtype) like suggested in the documentation:
Remember that this will be shared by all apps that use OutSystemsNow TakePicture.
Thanks
Using the TakePicture feature of OutSystemsNow, you can customize some behavior of what happens on the device. Open the OutSystemsNow module and search for
navigator.camera.getPicture
According to the documentation, getPicture allows you to define a source type. Default is Camera.PictureSourceType.CAMERA, but you can use Camera.PictureSourceType.PHOTOLIBRARY and it should go to the recent pictures. So, in the getPicture, add another parameter (after destinationtype) like suggested in the documentation:
, sourceType: Camera.PictureSourceType.PHOTOLIBRARY
Remember that this will be shared by all apps that use OutSystemsNow TakePicture.
Thanks