pwlin / cordova-plugin-file-opener2

A File Opener Plugin for Cordova
MIT License
314 stars 587 forks source link

Open PDF with Adobe not able provide full permission #222

Closed subashdbc closed 6 years ago

subashdbc commented 6 years ago

Hello,

I am using this code to open PDF file with Adobe Acrobat, below code opens the file as expected.

this.cordova.plugins.fileOpener2.open( filePath, 'application/pdf', { error : function(){ }, success : function(){ } } );

But what is the issue is, I have a PDF file which can be edited through Adobe Acrobat. When I open the file stright away from the Adobe Acrobat app I can able to edit and when I press the back button it saves automatically. But when I open the PDF file from the cordova application it opens and I can also edit that, but it fails to save automatically. Do I need to set any extra permission or anyother way?

Thanks in advance!

Langstra commented 6 years ago

Related to #221

subashdbc commented 6 years ago

Thanks for your help. It works like a charm :)