Can anyone tell me how to sideload the ebooks I borrow from my elibrary onto my DroidX running the Nook App? (from Barnes and Noble)
Hi, I have a Xoom WiFi (Android 3.0 Honeycomb) and I'm not sure this will apply completely to you but here is what I did to sideload an epub book into my Nook App.
One way to side load is to use your file system e.g. Windows Explorer and copy the files onto your device e.g. to the location
sdcard/Nook/MyDocuments
for some reason I don't see the Nook directory when connected to either a PC or a Mac and that's the case for you then read on.
For me, use of "adb" Android Debug Bridge is required and that means downloading and installing the Android SDK. If on Windows you may need to install the Motorola Driver Installer. Example below has the location of adb in the path already and I'm using a Windows command prompt. This would be similar on a Linux computer or a Mac.
First check connectivity (your Android device should be listed)
adb devices
Second make sure you know where to put the file. Look for MyDocuments in the Nook directory. I've seen this referred to as "My Documents" in various other places but my app has no space in the name. If yours has a space you'll need to use quotes around the name.
adb -d shell ls sdcard/Nook
Do the copy
cd (where the_ebook is)
adb -d push the_ebook.epub sdcard/Nook/MyDocuments/
1326 KB/s (7458196 bytes in 5.492s)
Open your Nook app and go to My Files. Refresh. This took a couple of tries and then the book showed up. Open and enjoy.
-- Peter