• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps Uninstall package

Features

Lurker
UnInstall package:
Uri packageUri =Uri.parse("package:<name>");
Intent uninstallIntent =newIntent(Intent.ACTION_UNINSTALL_PACKAGE, packageUri);
startActivity(uninstallIntent);

How to remove without confirmation dialog?
 
Back
Top Bottom