You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a Nook with a 32GB SD card installed, which will get mounted at /sdcard (the internal ~200MB partition normally used for eBooks is mounted at /media), but NewsRob/GrazeRSS attempting to use this method (which is non-existent in the Nook's version of Android 2.1) prevents it from even starting up. This method was only added in API level 8 (2.2), apparently.
Alternatively, you could internally hardcode the ExternalFilesDir to /sdcard if ro.product.overall.name==NOOK and ro.product.manufacturer==BarnesAndNoble
The text was updated successfully, but these errors were encountered:
Late to reply @cowbutt. I ran GrazeRSS and NewsRob on a Nook with Glowlight for years. With storage on the SDCard.
Are you just trying to sideload the APK. I'm not sure that ever worked.
Have you rooted? I did. It looks like nookdevs went away years ago. My Nook+blowlight has a a bend/bright line and some VERY hot pixels, but is still running today. GrazeRSS + eINK == HAPPY HAPPY commute.
Please report back if you've found a solution. The problem with the NOOK hardcode is the number of variants and how /sdcard has been used over the versions. Many NOOKs never had an SDCARD, some mount /sdcard as the internal storage, etc.
It might be possible to make a more product specific code force, but NOOK/B&N would likely break many things on other systems.
(link to original NewsRob issue: marianokamp#2 )
I have a Nook with a 32GB SD card installed, which will get mounted at /sdcard (the internal ~200MB partition normally used for eBooks is mounted at /media), but NewsRob/GrazeRSS attempting to use this method (which is non-existent in the Nook's version of Android 2.1) prevents it from even starting up. This method was only added in API level 8 (2.2), apparently.
For a API level of 7, http://developer.android.com/reference/android/os/Environment.html#getExternalStorageDirectory%28%29 is the way to go.
Alternatively, you could internally hardcode the ExternalFilesDir to /sdcard if ro.product.overall.name==NOOK and ro.product.manufacturer==BarnesAndNoble
The text was updated successfully, but these errors were encountered: