Introducing XDA:DevCon – A Conference For Developers By Developers
XDA Developers Android and Mobile Development Forum
Forgot your password?
 
Post Reply+
Tip us?
 
jege_rafale
Old
#1  
Junior Member - OP
Thanks Meter 0
Posts: 1
Join Date: Dec 2010
Default How to uninstall an application ? How to add icon of desktop ?

Hi,

I'm french and here in France we don't have Barnes & Nobles.
Last Week, I was in Miami and I bought a Nook Color because I saw on this forum that we can have a "full" android and I wanted a pdf reader and more if possible...

I have root my eReader tody and install some application. I installed some applications to test : how to uninstall them ?

I have an other question : how to add icons of this applications apk on the desktop ?

Think you for your job.
 
isolated_epidemic
Old
#2  
Senior Member
Thanks Meter 22
Posts: 211
Join Date: Sep 2007
Location: Spokane, WA
You need a 3rd party launcher such as ADW or LauncherPro to do either of these things. The default nook launcher doesnt support app shortcuts or uninstalling apps.
 
Novarider
Old
#3  
Senior Member
Thanks Meter 57
Posts: 1,105
Join Date: Jul 2010
How do you use launcherpro to uninstall apps?
Hello, My name is Andrew and I am a Flashaholic
 
neozen21
Old
(Last edited by neozen21; 13th December 2010 at 01:56 AM.)
#4  
neozen21's Avatar
Senior Member
Thanks Meter 85
Posts: 232
Join Date: Oct 2010
Location: Henderson, NV
You need to change your launcher to a 3rd party one. I prefer Zeam. It works the best. Then while in the. App drawer, press and hold the app you want and drag it to either the desktop or the app bar.

To uninstall, you can either use an app such as TitaniumBackup or use RootExplorer to remove the. Apk in /data/app and the dir in /data/data
 
Novarider
Old
#5  
Senior Member
Thanks Meter 57
Posts: 1,105
Join Date: Jul 2010
Quote:
Originally Posted by neozen21 View Post
You need to change your launcher to a 3rd party one. I prefer Zeam. It works the best. Then while in the. App drawer, press and hold the app you want and drag it to either the desktop or the app bar.

To uninstall, you can either use an app such as TitaniumBackup or use RootExplorer to remove the. Apk in /data/app and the dir in /data/data
I have never seen zeam before but I like it so far. Thanks for the sugestion
Hello, My name is Andrew and I am a Flashaholic
 
jsmith.nook
Old
#6  
jsmith.nook's Avatar
Junior Member
Thanks Meter 2
Posts: 21
Join Date: Dec 2010
To uninstall apps using ADB:

First get a list of packages installed on your NC:
Code:
adb shell pm list packages
Figure out what package you want to uninstall from that list. It might be helpful to pipe the output from the above command through some tool to search for you. For example let's say I want to uninstall Raging Thunder 2, I would do this:

Under Linux:
Code:
adb shell pm list packages | grep -i thunder
Under Windows:
Code:
adb shell pm list packages | find /i "thunder"
The output of which is:
Code:
package:com.polarbit.rthunder2lite
So now I know the name of the package. To uninstall that package I would enter the following:
Code:
adb uninstall com.polarbit.rthunder2lite
And that's it. That's how you uninstall an app using adb.

To add icons you need to install an alternative launcher since the stock NookColor launcher doesn't let you do this. I like Zeam. Each launcher will have its own method for then adding icons to the desktop, but typically you tap and hold down on the background and then a menu pops up with the option to add items.
The Following User Says Thank You to jsmith.nook For This Useful Post: [ Click to Expand ]
 
Post Reply+
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

report this ad
Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts
BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Go to top of page...

XDA PORTAL POSTS

Careers in Android: What Hiring Managers Won’t Tell You – XDA Developer TV

XDA Developer TV Producer Jayce released a video a … more

Coloring Your Logcat World

Getting feedback for your app during development is as simple as adding logging info where necessary and looking … more

Guide Your Sheep to Safety with Finger Shepherd

Just a coupe of days ago, we brought you news about a game calledAgent Sheep. In that … more

Nandroid Manager Receives Major Update

Do you find yourself obsessively jumping from ROM to ROM? And do you hate having to restore a full … more