[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-05 Thread Mark Murphy
Kenny Yu wrote: Simply put the cmd to Java function: system(adb uninstall apt_name); I mean your code should invoke the commands exactly as 'adb' does. Kenny On Jan 3, 8:52 am, Dr. Tingrong Lu lutingr...@hotmail.com wrote: Hi, How to write code to uninstall apk from device/emulator?

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-04 Thread Kenny Yu
Simply put the cmd to Java function: system(adb uninstall apt_name); I mean your code should invoke the commands exactly as 'adb' does. Kenny On Jan 3, 8:52 am, Dr. Tingrong Lu lutingr...@hotmail.com wrote: Hi, How to write code to uninstall apk from device/emulator? Could anyone drop a

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-03 Thread Dr. Tingrong Lu
This answer makes me sad, my boss ordered me to do that. - Original Message - From: Shane Isbell To: android-developers@googlegroups.com Sent: Saturday, January 03, 2009 3:36 PM Subject: [android-developers] Re: How to write code to uninstall apk from device/emulator

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-03 Thread freepine
that. - Original Message - *From:* Shane Isbell shane.isb...@gmail.com *To:* android-developers@googlegroups.com *Sent:* Saturday, January 03, 2009 3:36 PM *Subject:* [android-developers] Re: How to write code to uninstall apk from device/emulator? On Fri, Jan 2, 2009 at 11:23 PM

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-03 Thread gasolin
Hi, You could uninstall app by sending an intent. Here is what we do in aTrackDog: Uri uri = Uri.fromParts(package, strPackageName, null); Intent it = new Intent(Intent.ACTION_DELETE, uri); startActivity(it); -- gasolin On 1月3日, 下午9時54分, freepine freep...@gmail.com wrote: Dr. Lu, Don't be

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-02 Thread kiran raj
Hi , this is the coding for uninstall the apk file. *adb uninstall apk_filename in command mode *using emulator Go to the dev tools go to package browser then unistall the package name now ur emulator delelte that package Thank u

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-02 Thread Dr. Tingrong Lu
- Original Message - From: kiran raj To: android-developers@googlegroups.com Sent: Saturday, January 03, 2009 2:33 PM Subject: [android-developers] Re: How to write code to uninstall apk from device/emulator? Hi , this is the coding for uninstall

[android-developers] Re: How to write code to uninstall apk from device/emulator?

2009-01-02 Thread Shane Isbell
to write code to uninstall apk from device/emulator? Hi , this is the coding for uninstall the apk file. *adb uninstall apk_filename in command mode *using emulator Go to the dev tools go to package browser then unistall the package name now ur