Now you can embed PDF files inside your app and allow your users to view or download it. Features – Adds as many PDF document you want in feature – Allows/Forbid a PDF download from the APP – Publish/Hide any document – Can be used multiple times in app – PDF viewer can be zoomed in/out in app – Easy navigation to view multiple files – Translation included Screenshots   Integrate Embed PDF module in your own module, use the below code in your javascript controller to open pdf file using Embed pdf. This example is for module developers only. angular .module('starter') .controller('AnyController', function ($injector) { $scope.openPdf = function () { try { if ($injector.has('Embedpdf')) { var pdfTitle = 'File example'; var pdfUrl = 'https://file-examples-com.github.io/uploads/2017/10/file-example_PDF_500_kB.pdf'; var canDownload = true; $injector.get('Embedpdf').openViewer(pdfTitle, pdfUrl, canDownload); } } catch (e) { } }; });