Friday, 29 April 2011

Uninstalling installed applications using Intent in Android


To uninstall the install application using Intent, the code snippet is

Intent intent = new Intent(Intent.ACTION_DELETE);
intent.setData(Uri.parse("package:com.example.android.apis"));
startActivity(intent);


The screenshot is,

1 comment: