Add Snippet |
This piece of code could uninstall apps from android device.
raw · copy · downloadUri packageURI = Uri.parse("package:com.any.app"); Intent intent = new Intent(Intent.ACTION_DELETE, packageURI); startActivity(intent);
Preview
Editors
Tags
Related Snippets
Get the phone SDK version
Basic service example in android
DataBases Adapter
Show all running services
Display height and width
XML Parser Example
Be the first to comment