Сбой приложения при попытке захвата изображения для загрузки в ionic3 на некоторых устройствах (RedMi 6A)

#angular #ionic3

#angular #ionic3

Вопрос:

 this.camera.getPicture(options).then((imagePath) => {
    // Special handling for Android library

    console.log(imagePath);

    let currentName = imagePath.substring(imagePath.lastIndexOf('/'));
    let correctPath = imagePath.substr(0, imagePath.lastIndexOf('/')   1);
    this.copyFileToLocalDir(correctPath, currentName, this.createFileName(x), x);

    /* localStorage.setItem("file_no",'1'); */
    this.upImages[x] = currentName;
    this.file_no = this.file_no   1;

}, (err) => {
    this.presentToast('Error while selecting image.');
});
  

Комментарии:

1. Когда мы выбираем камеру, камера открывается успешно, но когда мы нажимаем на кнопку захвата, приложение в фоновом режиме закрывается без отображения какого-либо сообщения об ошибке