MobiWare
Share the information to developers
Pages
Home
Videos
Android Apps
Developers Connections
Sites & Forums
Indian Movie Songs
Contact Me
Friday, August 6, 2010
Uninstalling application using Intent in Android
AIM: To uninstall a application using Intent in Android by its package name.
Solution:
// add this few lines anywhere
Intent i = new Intent(Intent.ACTION_DELETE);
i.setData(Uri.parse("package:com.samplebrightness"));
startActivity(i);
//end
2 comments:
Anonymous
December 10, 2010 at 10:50 AM
good
Reply
Delete
Replies
Reply
Daniel
July 13, 2011 at 4:42 AM
Thanks! :D
Reply
Delete
Replies
Reply
Add comment
Load more...
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
Android Developers Blog
Loading...
Ram's shared items
good
ReplyDeleteThanks! :D
ReplyDelete