Then specify the full name of the operation:
Intent intent = new Intent();
ComponentName comp = new ComponentName("com.package.name.of.droidreader", "com.package.name.of.droidreader.DroidReader");
intent.setComponent(comp);
startActivity(intent);
To find out what the name and activity of the package is, you can look at the output adb logcat: when you open the activity that it registers there. And, of course, set the intent correctly so that the DroidReader knows which file to open.
, , startActivity try-catch, ActivityNotFoundException ( , ).