简体   繁体   中英

Cannot uninstall android app

I have a lot of research about this, but there's no question that matched with this issue. I have installed an android app. Then if I uninstall it, its just showing a pop up the application's icon . I have also tried to go to security setting and the administrator , but the application is not there. What happen to that?

如果您知道软件包名称(例如com.company.app ),则可以尝试使用adb插入PC并发出adb uninstall <package name>

You can uninstall it using adb (Android Debug Bridge), a swiss-knife tool from the Android SDK.

First, you need to know the SDK folder location: In Android Studio, go to Tools -> Android -> SDK Manager, and get the location from "Android SDK Location".

Then, go to the Terminal tab on the bottom, and type:

cd <Android SDK Location>
cd platform-tools

That will leave you in the folder that contains the adb tool.

Finally, to uninstall the application from your device, type in the Terminal:

adb uninstall <package name>

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM