简体   繁体   中英

How do I uninstall Travel Mate App in Android?

It has been some time now that I installed Travel mate. https://github.com/project-travel-mate/Travel-Mate/tree/master/Android

But the problem is: I can't uninstall it now. :(

Every time I click on Uninstall button, the next screen covers the full screen.

旅行伴侣应用程序

![Travel Mate 应用 - 全屏

I have tried searching it's apk file, but couldn't find it in my android/data/ or other directories.

Is there any option to remove this app without installing any 3rd party app or without doing factory-reset.

Phone Confi.:

  • Model: Coolpad 3600I
  • Android Version: 6.0.1
  • Resolution: 1920*1080

You can do it using ADB. Connect device to your computer and follow instructions.

First of all you need to get serial number of connected device:

adb devices -l

You will see something like that:

List of devices attached
FA7B51A02805 device usb:336592896X product:walleye model:Pixel_2

Serial number marked as a bold.
Use serial number to get list of all 3rd party applications installed on your device.

adb -s {serial number} shell pm list packages -3

After that you can delete app using next adb command:

adb uninstall {app package}

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