-3

I have system-level app with

Device is not rooted! INSTALL_PACKAGES and ACTION_UNINSTALL_PACKAGE permission is included to Manifest

Can I install and Uninstall any apk silently ?

Amsheer
  • 7,046
  • 8
  • 47
  • 81
Sanjay Bhalani
  • 329
  • 1
  • 18

1 Answers1

2

I don't think you can uninstall app without user confirmation

But uninstall app use the following code.

Intent intent = new Intent(Intent.ACTION_DELETE);
                    intent.setData(Uri.parse("package:com.example.getgoogleaccount"));
                    startActivity(intent);  
Amsheer
  • 7,046
  • 8
  • 47
  • 81
  • 2
    your code is working fine but it will prompt to ask user to uninstall application i want that will not prompt anymore – Sanjay Bhalani Jun 10 '15 at 07:44
  • 1
    "I don't think you can uninstall app without user confirmation". I mention this in my answer. In fact i also try to do the same not uninstall . I try to install application. But android system not allowing me to do that without user confirmation. – Amsheer Jun 10 '15 at 09:13