Not able to generate pdf download getting error of android.os.FileUriExposedException: file:///storage/emulated/0/Download/INV-0002.pdf exposed beyond app through Intent.getData()
String path = downloadPDF();
if (path.length() == 0) {
Toast.makeText(NewInvoiceActivity.this, getResources().getString(R.string.pdf_not_created), Toast.LENGTH_SHORT).show();
} else {
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(new File(path)), "application/pdf");
intent.setFlags(Intent.FLAG_ACTIVITY_NO_HISTORY);
startActivity(intent);
}