How do I uninstall Travel Mate App in Android?How to clone all remote branches in Git?Is there a way to run Python on Android?How to save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?What is 'Context' on Android?How can I determine the URL that a local Git repository was originally cloned from?How do I update a GitHub forked repository?Proper use cases for Android UserManager.isUserAGoat()?
What is my external HDD doing?
Any Tips On Writing Extended Recollection In A Novel
Why would Dementors torture a Death Eater if they are loyal to Voldemort?
Advantages of using bra-ket notation
ATMEGA328P-U vs ATMEGA328-PU
Is there a word for the act of simultaneously pulling and twisting an object?
Did NASA distinguish between the space shuttle cockpit and flight deck?
Two palindromes are not enough
Why is my 401k manager recommending me to save more?
Does "boire un jus" tend to mean "coffee" or "juice of fruit"?
Robots in a spaceship
Why doesn't SpaceX land boosters in Africa?
Reaction mechanism of rearrangement
Is this house-rule removing the increased effect of cantrips at higher character levels balanced?
Chandra exiles a card, I play it, it gets exiled again
What verb goes with "coup"?
What's the point of stochastic volatiliy models if you can use local volatility?
Does a lens with a bigger max. aperture focus faster than a lens with a smaller max. aperture?
LaTeX Make Word Appear
How can this fractal shape perfectly cover a certain platonic solid?
Is it possible to alias a column based on the result of a select+where?
Is it OK to say "The situation is pregnant with a crisis"?
What does this Pokemon Trainer mean by saying the player is "SHELLOS"?
Do electrons really perform instantaneous quantum leaps?
How do I uninstall Travel Mate App in Android?
How to clone all remote branches in Git?Is there a way to run Python on Android?How to save an Android Activity state using save instance state?Close/hide the Android Soft KeyboardWhy is the Android emulator so slow? How can we speed up the Android emulator?Is there a unique Android device ID?What is 'Context' on Android?How can I determine the URL that a local Git repository was originally cloned from?How do I update a GitHub forked repository?Proper use cases for Android UserManager.isUserAGoat()?
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.
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
android github uninstall
add a comment |
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.
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
android github uninstall
add a comment |
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.
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
android github uninstall
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.
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
android github uninstall
android github uninstall
asked Mar 25 at 16:35
Rohit SharmaRohit Sharma
7002 gold badges10 silver badges28 bronze badges
7002 gold badges10 silver badges28 bronze badges
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Ok you have to specify device that you want to use. List of devices:adb devices -l
Then runadb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
After runningadb shell
. It gives meshell@CP3600I:/ $
& when I runadb devices -1
It says/system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.
– Rohit Sharma
Mar 25 at 17:37
I have updated answer.
– oss
Mar 26 at 7:54
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Sincecut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!
– Rohit Sharma
Mar 26 at 8:32
|
show 1 more comment
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55342500%2fhow-do-i-uninstall-travel-mate-app-in-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
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
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Ok you have to specify device that you want to use. List of devices:adb devices -l
Then runadb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
After runningadb shell
. It gives meshell@CP3600I:/ $
& when I runadb devices -1
It says/system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.
– Rohit Sharma
Mar 25 at 17:37
I have updated answer.
– oss
Mar 26 at 7:54
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Sincecut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!
– Rohit Sharma
Mar 26 at 8:32
|
show 1 more comment
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
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Ok you have to specify device that you want to use. List of devices:adb devices -l
Then runadb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
After runningadb shell
. It gives meshell@CP3600I:/ $
& when I runadb devices -1
It says/system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.
– Rohit Sharma
Mar 25 at 17:37
I have updated answer.
– oss
Mar 26 at 7:54
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Sincecut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!
– Rohit Sharma
Mar 26 at 8:32
|
show 1 more comment
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
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
edited Mar 26 at 8:35
answered Mar 25 at 16:42
ossoss
3652 silver badges8 bronze badges
3652 silver badges8 bronze badges
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Ok you have to specify device that you want to use. List of devices:adb devices -l
Then runadb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
After runningadb shell
. It gives meshell@CP3600I:/ $
& when I runadb devices -1
It says/system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.
– Rohit Sharma
Mar 25 at 17:37
I have updated answer.
– oss
Mar 26 at 7:54
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Sincecut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!
– Rohit Sharma
Mar 26 at 8:32
|
show 1 more comment
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Ok you have to specify device that you want to use. List of devices:adb devices -l
Then runadb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
After runningadb shell
. It gives meshell@CP3600I:/ $
& when I runadb devices -1
It says/system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.
– Rohit Sharma
Mar 25 at 17:37
I have updated answer.
– oss
Mar 26 at 7:54
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Sincecut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!
– Rohit Sharma
Mar 26 at 8:32
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Thank you. It says, pm list packages -3: not found.
– Rohit Sharma
Mar 25 at 16:51
Ok you have to specify device that you want to use. List of devices:
adb devices -l
Then run adb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
Ok you have to specify device that you want to use. List of devices:
adb devices -l
Then run adb -s device serial shell "pm list packages -3"|cut -f 2 -d ":"
– oss
Mar 25 at 17:01
After running
adb shell
. It gives me shell@CP3600I:/ $
& when I run adb devices -1
It says /system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.– Rohit Sharma
Mar 25 at 17:37
After running
adb shell
. It gives me shell@CP3600I:/ $
& when I run adb devices -1
It says /system/bin/sh: adb: not found
I did tried with my phone's IMEI no. Looks like I have to brush up my adb commands.– Rohit Sharma
Mar 25 at 17:37
I have updated answer.
– oss
Mar 26 at 7:54
I have updated answer.
– oss
Mar 26 at 7:54
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Since
cut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!– Rohit Sharma
Mar 26 at 8:32
Yes. I have checked it yesterday only. It didn't solved my issue. Invested 2 hours on this today as well. Checked my Environment Variables twice. Since
cut
wasn't recognized as a internal or external command. Also, directories had permission issue, and don't want to root it. So I guess I have to Reset to Factory Settings only. Thanks for your help @oss !!– Rohit Sharma
Mar 26 at 8:32
|
show 1 more comment
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Got a question that you can’t ask on public Stack Overflow? Learn more about sharing private information with Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55342500%2fhow-do-i-uninstall-travel-mate-app-in-android%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown