Say I want to do the following:
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(path, "application/epub");
At the moment I'm having a tough time finding an app out there that has a filter setup for epub, and was wondering if anyone has any ideas.
My intent is to load an epub file in an external application, which will be initiated from mine. Tried using Aldiko, but it doesn't seem to have any filters setup for this.
It doesn't seem like an external app exists for my purposes.
So, my solution is to write my own ereader to parse EPUB files for my unique needs.