Uninstall APK via intent

3 votes · 0 comments

Invoke the uninstaller.

raw ·
copy
· download
Uri uninstallUri = Uri.fromParts("package", "xxx", null); Intent intent = new Intent(Intent.ACTION_DELETE, uninstallUri) startActivity(intent);

Be the first to comment

Sign in with OpenID