Pradip
Pradip
One alternative you can do is try saving the base64 string to a file and then try to pass path of the file to this print function. This has worked...
> @pradipchitrakar could you send that bit of code how you did it? ` const tempFile = 'invoice.pdf'; this.file.createFile(this.file.cacheDirectory, tempFile, true).then(_ => { this.file.writeFile( this.file.cacheDirectory, tempFile, pdfBlob, {replace: true}).then(() =>...

@HeikoKanzler Are you getting the same problem in production? If yes, I had to change optimization to false in angular,json for production build which is not the best solution but...