[android-developers] Re: uninstall an application

2009-10-20 Thread XC He
Try: Uri packageURI = Uri.parse(package:+packageName); Intent uninstallIntent = new Intent(Intent.ACTION_DELETE, packageURI); startActivity(uninstallIntent); But not for system package nemate...@gmail.com Hi I want to uninstall my application programmatically..is it possible?

[android-developers] Re: uninstall an application

2009-10-20 Thread XC He
Anyone know how to trace or debug inputmethod service under Eclpse? I need step by step tracking. Thanks. Best Regards --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group,

[android-developers] Re: uninstall an application

2009-10-20 Thread Roman ( T-Mobile USA)
For being able to uninstall an application you need a permission DELETE_PACKAGES which can only be used by the system or by the application having the same signature. This means you won't be able to uninstall third party application if you don't have the corresponding signature. If it is