如何删除不知道它来自亚行的应用程序的包名
我可以使用命令删除的应用程序(我code自己并安装通过SDK)
I can delete apps (that I code myself and install through the SDK) using the command
adb uninstall com.company.apppackage
我怎么卸载此通过利用亚行,如果我不知道包名的命令行?例如,如果一个应用程序显示在Android的主菜单,我的应用程序
,我怎么可以删除它,如果我不知道它的包名?或者,有没有办法以某种方式知道一个应用程序内部包的名字?
how do I uninstall this through the command line using adb if I do not know the package name? For example, if an app shows up in the Android main menu as My Application
, how can I delete it if I do not know it's package name? Or alternatively, is there a way to somehow know an apps internal package name?
尝试: -
亚行根
然后进入亚行外壳
亚行外壳
了解您的应用程序包名称: -
Find out your apps package name:-
下午清单包| grep的你的应用程序名称/东西与你的应用程序的名称
pm list packages | grep "your app name/something related to your app name"
然后使用: -
亚行卸载
或
时卸载
希望工程:)