Read video stored on android native storage in my Ionic app

I’ve been searching for a solution. I resolve this issue as follows. After platform.ready() function I created a directory as follows. this.file.createDir(this.file.externalDataDirectory , ‘Videos’, false).then(() => { // console.log(‘Directory created successfully’); }).catch(() => { // console.log(‘Failed to create directory’); }); To download videos inside the created directory import { FileTransfer, FileTransferObject } from ‘@ionic-native/file-transfer’; import … Read more