I have an android app wherein I need to open my pdf file from url. For that, I have used following code to invoke supporting applications to open my pdf file but despite having more than 5 such applications, just two apps e.g. Adobe Reader and Goodgle Drive are listed.
intent.setDataAndType(Uri.parse(url), "application/pdf");
startActivity(intent);```
But, I'm in need to open pdf using other compatible apps already installed. Please help resolve the ibid issue.
Thanks