[android-beginners] Re: Removing installed application in Emulator

2009-01-09 Thread dssheng

Hi
if you mean applications already in image, you can do it as below:

1-
adb remount
adb push yourapk  /system/app/

adb shell
ps
kill $(pid of zygote)

also you can
2-
make yourmodule snod
and you will got a image including your module.

--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Removing installed application in Emulator

2009-01-08 Thread Lutz Schönemann
Simplest way to do this is while the emulator is running:
1) Go to the home screen
2) Push the Menu button
3) Select Settings
3) Select Applications
4) Select Manage applications
5) Select the package you want to remove
6) Click on Uninstall
7) Click OK and wait until uninstall is completed
8) Click OK again and the job is done

Lutz

  How can we remove the already installed apps from the Emulator?
 
  Thanks,
  Apparao Mulpuri. 

smime.p7s
Description: S/MIME cryptographic signature


[android-beginners] Re: Removing installed application in Emulator

2009-01-08 Thread Mahesh Vaghela
To remove application

go to command prompt

go up to your tools directory

than use this commands:

 adb shell
cd data
cd app
ls

ls will list all your application installed.

than..

rm Your application name along with Package name









On Wed, Jan 7, 2009 at 4:40 PM, Apparao Mulpuri apparao.for...@gmail.comwrote:


 How can we remove the already installed apps from the Emulator?

 Thanks,
 Apparao Mulpuri.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Removing installed application in Emulator

2009-01-08 Thread PRATAP SOLAPUR

go to command prompt move to tools dir then execute following...

adb uninstall package-name

where package-name is the package name of the application u want to uninstall.

On 1/7/09, Mahesh Vaghela mah...@indianic.com wrote:
 To remove application

 go to command prompt

 go up to your tools directory

 than use this commands:

  adb shell
 cd data
 cd app
 ls

 ls will list all your application installed.

 than..

 rm Your application name along with Package name









 On Wed, Jan 7, 2009 at 4:40 PM, Apparao Mulpuri
 apparao.for...@gmail.comwrote:


 How can we remove the already installed apps from the Emulator?

 Thanks,
 Apparao Mulpuri.

 


 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---



[android-beginners] Re: Removing installed application in Emulator

2009-01-07 Thread David Turner
if you mean the applications that are already part of the system image (i.e.
available after a -wipe-data),
then you can't uninstall them since the partition is read-only.

On Wed, Jan 7, 2009 at 12:10 PM, Apparao Mulpuri
apparao.for...@gmail.comwrote:


 How can we remove the already installed apps from the Emulator?

 Thanks,
 Apparao Mulpuri.

 


--~--~-~--~~~---~--~~
You received this message because you are subscribed to the Google
Groups Android Beginners group.
To post to this group, send email to android-beginners@googlegroups.com
To unsubscribe from this group, send email to
android-beginners-unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en
-~--~~~~--~~--~--~---