2

I'm writing launcher where I want to delete specific application on user click without calling remove intent. Can I do this?

Force
  • 6,312
  • 7
  • 54
  • 85
skayred
  • 10,603
  • 10
  • 52
  • 94

1 Answers1

1

Yes, it is possible with superuser (root) privileges.

Just delete the corresponding apk in /data/app/com.example.app-X.apk and the folder /data/data/com.example.app

Apart from that, there is no other way.

Force
  • 6,312
  • 7
  • 54
  • 85