-4

I'm trying to remove app from app list on my phone, the application always send popup advertising for provider of my sim card, the application exists on application manager but i can't remove it using manual method, i'm trying to remove it using adb shell.

Here’s a screenshot:

Screenshot of the app

Uooo
  • 6,204
  • 8
  • 36
  • 63

1 Answers1

0

you can use

adb shell pm uninstall app.to.remove

or, as answered here

adb shell am start -a android.intent.action.DELETE -d package:app.to.remove

please refer to adb manual for further options. you should find the package name in the application manager.

Community
  • 1
  • 1
vector
  • 99
  • 8
  • Thanks for answer, but i don't know the package name of app. – Faris Abu Saleem Apr 22 '15 at 09:02
  • you should find it in the application manager, where you were trying to uninstall that app – vector Apr 22 '15 at 09:06
  • the application appears on application manager like this [link] https://drive.google.com/open?id=0B5A8DxeueoOOOEZOR0J6Qnl6VEdlVnJOMlYtVDBlM2N5QlhJ&authuser=0 – Faris Abu Saleem Apr 22 '15 at 09:07
  • look in the running app list, there you should find it (if it is running) sorry, before i couldn't see the screenshot. Maybe you can try also with this application https://play.google.com/store/apps/details?id=com.projectsexception.myapplist&hl=it – vector Apr 22 '15 at 09:16