I implemented the plugin in my Cordova 3.5 based app. It worked successfully when QuickOffice or Adobe PDF Reader installed on my Nexus 7 (Kitkat 4.4.4).
But when I uninstalled both the PDF Readers from the Android device and ran my app, when I clicked the "Open PDF" button, nothing happened. Ideally it should have brought a pop with icons of exisiting apps to "Open With" or throw error of "No PDF reader found".
Why this wildcard does not get called:
else { intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri, "/");
}