Register Guidelines E-Books Today's Posts Search

Go Back   MobileRead Forums > E-Book Readers > Barnes & Noble NOOK > Nook Developer's Corner

Notices

Reply
 
Thread Tools Search this Thread
Old 01-22-2011, 01:33 PM   #16
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
Quote:
Originally Posted by BarryR View Post
...
Fortunately, I do have ADB installed...
That's great. There's no reason to buy Root Explorer then, unless you want the convenience.
SCION is offline   Reply With Quote
Old 01-22-2011, 02:12 PM   #17
BarryR
Connoisseur
BarryR doesn't litterBarryR doesn't litter
 
Posts: 67
Karma: 104
Join Date: Jan 2011
Location: Wilbraham, MA
Device: Color Nook
Quote:
Originally Posted by SCION View Post
That's great. There's no reason to buy Root Explorer then, unless you want the convenience.
So, how do I get Gingerbread Keyboard to work using ADB?

I tried to uninstall it (using ADB uninstall) but don't know what to uninstall.

Would greatly appreciate any clues.

Thanks
BarryR is offline   Reply With Quote
Advert
Old 01-22-2011, 02:25 PM   #18
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
You need to go into /system/app and see what the complete name of the .apk is. You can use a file explorer on the device to do that.

Then on the computer:

ADB uninstall /system/app/filename.apk

Last edited by SCION; 01-22-2011 at 02:37 PM.
SCION is offline   Reply With Quote
Old 01-22-2011, 02:37 PM   #19
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
Made a change to the uninstall path in the post above.
SCION is offline   Reply With Quote
Old 01-22-2011, 02:53 PM   #20
BarryR
Connoisseur
BarryR doesn't litterBarryR doesn't litter
 
Posts: 67
Karma: 104
Join Date: Jan 2011
Location: Wilbraham, MA
Device: Color Nook
Quote:
Originally Posted by SCION View Post
You need to go into /system/app and see what the complete name of the .apk is. You can use a file explorer on the device to do that.

Then on the computer:

ADB uninstall /system/app/filename.apk
I get "failure" when I try that. Do I have to make the file writable before it will let me uninstall it?
BarryR is offline   Reply With Quote
Advert
Old 01-22-2011, 02:58 PM   #21
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
Quote:
Originally Posted by BarryR View Post
I get "failure" when I try that. Do I have to make the file writable before it will let me uninstall it?
adb shell mount -o remount,rw /dev/block/mmcblk0p5 /system/app

What's the full name of the .apk file? I don't have the keyboard.
SCION is offline   Reply With Quote
Old 01-22-2011, 03:14 PM   #22
BarryR
Connoisseur
BarryR doesn't litterBarryR doesn't litter
 
Posts: 67
Karma: 104
Join Date: Jan 2011
Location: Wilbraham, MA
Device: Color Nook
Quote:
Originally Posted by SCION View Post
adb shell mount -o remount,rw /dev/block/mmcblk0p5 /system/app

What's the full name of the .apk file? I don't have the keyboard.
I have a file named GingerBread.apk in my /system/app folder.

I wasn't sure which of the following 2 I was supposed to do so I tried them sequentially. Neither worked:
C:\Users\Barry>adb shell mount -o remount,rw /dev/block/mmcblk0p5/system/app
mount: Invalid argument

C:\Users\Barry>adb shell mount -o remount,rw /dev/block/mmcblk0p5 /system/app/gingerbread.apk
mount: No such file or directory
BarryR is offline   Reply With Quote
Old 01-22-2011, 03:35 PM   #23
=X=
Wizard
=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.=X= ought to be getting tired of karma fortunes by now.
 
=X='s Avatar
 
Posts: 3,671
Karma: 12205348
Join Date: Mar 2008
Device: Galaxy S, Nook w/CM7
Quote:
Originally Posted by BarryR View Post
Thanks:
Is this the solution when Gingerbread is installed but comes up blank?
Can I do it with any free apps so I don't have to buy "Root Explorer" (I know, I'm cheap).
I reinstalled Gingerbread from the apk file but that didn't solve the problem. I thought it might work if I uninstall first, but don't know how to do that.
No if it works you see a keyboard. I'm using it tobtyoebthis message.
Yes you can use adb, but i can't help you there as i have not set it up.

I'm lazier than cheap(being cheap is too expensssiive) so i opted to buy the tool and be done with the task. also i don't want to have to be terhered to do something low level on my device.

Good looks like your almost there, where did you find the gingerbread apk? Not all of them work on the nook. I have a working one but i cant upload it from my nook. look in xda's nook forum.

your missing step 4 that is to move the package to /system/app
=X= is offline   Reply With Quote
Old 01-22-2011, 03:35 PM   #24
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
You got an error message with the first one because the command is not proper.

Are you able to copy and paste. It's best that you do that.

adb shell mount -o remount,rw /dev/block/mmcblk0p5 /system/app

(This mounts the drive as read/write)

If that is successful then try to uninstall:

ADB uninstall /system/app/GingerBread.apk
SCION is offline   Reply With Quote
Old 01-22-2011, 03:38 PM   #25
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
This is confusing now. After you try the above...

Check /data/app and see if the Gingerbread keyboard is there as well.

Last edited by SCION; 01-22-2011 at 03:41 PM.
SCION is offline   Reply With Quote
Old 01-22-2011, 03:39 PM   #26
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
Quote:
Originally Posted by =X= View Post
...
your missing step 4 that is to move the package to /system/app
He said he has gingerbread.apk in /system/app already.
SCION is offline   Reply With Quote
Old 01-22-2011, 03:44 PM   #27
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
If it doesn't work we'll try using ADB Shell to remove the .apk.
SCION is offline   Reply With Quote
Old 01-22-2011, 03:54 PM   #28
The Joker
Addict
The Joker has learned how to read e-booksThe Joker has learned how to read e-booksThe Joker has learned how to read e-booksThe Joker has learned how to read e-booksThe Joker has learned how to read e-booksThe Joker has learned how to read e-booksThe Joker has learned how to read e-books
 
The Joker's Avatar
 
Posts: 205
Karma: 882
Join Date: Dec 2010
Device: NookColor.........rooted
I wonder why I didn't have to go thru the ADB to get my gingerbread keyboard working......Actually, I didn't even notice it till I started trying to download the Ultra Keyboard apk.....which I haven't actually been successful at

ETA....I'm not sure I even like Gingerbread more than the stock keyboard anyways....

Last edited by The Joker; 01-22-2011 at 03:57 PM.
The Joker is offline   Reply With Quote
Old 01-22-2011, 03:59 PM   #29
SCION
Séduisant
SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.SCION ought to be getting tired of karma fortunes by now.
 
Posts: 4,706
Karma: 2107018
Join Date: Jan 2010
Location: Texas, USA
Device: Boox Note Air2+; Kobo Libra2; Kindle Scribe, Oasis3; iPad Mini6
Quote:
Originally Posted by The Joker View Post
ETA....I'm not sure I even like Gingerbread more than the stock keyboard anyways....
Thanks for the value-added comment.
SCION is offline   Reply With Quote
Old 01-22-2011, 03:59 PM   #30
BarryR
Connoisseur
BarryR doesn't litterBarryR doesn't litter
 
Posts: 67
Karma: 104
Join Date: Jan 2011
Location: Wilbraham, MA
Device: Color Nook
Quote:
Originally Posted by SCION View Post
You got an error message with the first one because the command is not proper.

Are you able to copy and paste. It's best that you do that.

adb shell mount -o remount,rw /dev/block/mmcblk0p5 /system/app

(This mounts the drive as read/write)

If that is successful then try to uninstall:

ADB uninstall /system/app/GingerBread.apk
When I try the adb shell mount... command I get the error "mount: invalid command"

"ADB uninstall /system/app/GingerBread.apk"
gets me "Failure"
Quote:
Originally Posted by SCION View Post
This is confusing now. After you try the above...

Check /data/app and see if the Gingerbread keyboard is there as well.
my /data folder is empty.
BarryR is offline   Reply With Quote
Reply


Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
K3 keyboard shortcuts et al btobw Amazon Kindle 25 10-15-2011 09:43 AM
Your vote - keyboard or no keyboard on Kindle mrzerga Amazon Kindle 56 03-10-2011 07:22 PM
IQ Keyboard? tmg820 PocketBook 3 01-07-2011 04:31 PM
Keyboard of the Gods... which one do you use? MrPLD Writers' Corner 18 09-23-2010 09:18 AM
K3 Keyboard Labels clintbradford Amazon Kindle 10 08-28-2010 03:14 AM


All times are GMT -4. The time now is 01:39 AM.


MobileRead.com is a privately owned, operated and funded community.