Hi all ! Could someone suggest please … is it possible that fileOpener2 open PDF well on Android 6,5,4 but not on Android 7 ? I use such code …
openURL(url) {
this.platform.ready().then(() => {
this.data_path = url;
this.fileOpener.open(this.data_path, 'application/pdf')
.then(() => console.log('File is opened'))
.catch(e => console.log('Error openening file', e));
});
}