Uninstall the TWRP app - G 2014 Q&A, Help & Troubleshooting

I installed the application unintentionally, but I can not uninstall it. Does anyone have any idea what to do?

Cundrie said:
I installed the application unintentionally, but I can not uninstall it. Does anyone have any idea what to do?
Click to expand...
Click to collapse
Did you try to uninstall using ES File Explorer?

Related

Remove F-Secure

Anyone know the command for adb to remove the F-Secure from a stock rom (rooted)
Also is the a way to copy text and paste in the command prompt?
adb shell pm disable package-name
As for copy & paste, use the mouse
Rusty! said:
adb shell pm disable package-name
As for copy & paste, use the mouse
Click to expand...
Click to collapse
Does that leave f-secure on the phone but disabled?
And also does anyone know the full file name of it as when I looked it was somthing like F-Secure_android_device and the rest is off the screen so can't see the full path name
Yes it does, but I don't know the name as I'm on CM7
Why don't you just freeze it using titanium backup, that is what I have done. ;-)
Sent from my LG-P990 using Tapatalk
you can uninstall it with titanium as well, make sure chuck norris mode is on.
I simply removed the apk file from system/apps.
Ok you will need to have root permissions and some kind of file browser like root explorer.
Sent from my LG-P990 using XDA Premium App
holoduke said:
I simply removed the apk file from system/apps.
Ok you will need to have root permissions and some kind of file browser like root explorer.
Sent from my LG-P990 using XDA Premium App
Click to expand...
Click to collapse
It's not that simple to remove a system apps as they are installed as Read Only files, tried with titanium and it still did not uninstall, but i did manage to freeze it
There is a way to make it so it doesn't run... Do a hard reset (non root) and never open the app. That's what I have done and never get the stupid sounds from it or anything else.
Sent from my LG-P990 using XDA Premium App
titan
with titanium backup, make af backup of f-secure and then uninstall it...
Kickasskev said:
It's not that simple to remove a system apps as they are installed as Read Only files, tried with titanium and it still did not uninstall, but i did manage to freeze it
Click to expand...
Click to collapse
Why not, i did this too..??
Nexus 4
Kickasskev said:
It's not that simple to remove a system apps as they are installed as Read Only files, tried with titanium and it still did not uninstall, but i did manage to freeze it
Click to expand...
Click to collapse
i have tried setting>security>device administrator>then unchecking that app....but it says that it will erase all my data? will uninstalling frm titanium backup will also do that?

how to uninstall DSP manager?

how do i uninstall it? I wanna flash the pure audio mod
Try Titanium Backup
fatality911 said:
how do i uninstall it? I wanna flash the pure audio mod
Click to expand...
Click to collapse
Try installing Titanium Backup Pro and uninstalling it (if I were you I'd only freeze it, more safe)
You can also use Uninstall Master - I used it and it's safe to remove.

Bonehead Move....

I made a stupid mistake... I'm running CM 10.2 and I forgot Superuser was integrated into the ROM and installed it from the Play Store. Now I'm stuck with two Superusers and I can't uninstall the one from the Play Store. I tried disabling it but that broke root.
Any suggestions on how to fix this without a reset?
Thanks!
gksmithlcw said:
I made a stupid mistake... I'm running CM 10.2 and I forgot Superuser was integrated into the ROM and installed it from the Play Store. Now I'm stuck with two Superusers and I can't uninstall the one from the Play Store. I tried disabling it but that broke root.
Any suggestions on how to fix this without a reset?
Thanks!
Click to expand...
Click to collapse
maybe use adb from the TWRP recovery sideload to uninstall the app from the play store then reinstall root. adb uninstall "package name" command may help
worst case if you have a recent backup of your data, wipe just the data and restore it from the backup.
cloppy said:
maybe use adb from the TWRP recovery sideload to uninstall the app from the play store then reinstall root. adb uninstall "package name" command may help
worst case if you have a recent backup of your data, wipe just the data and restore it from the backup.
Click to expand...
Click to collapse
I couldn't get anything to remove it. *sigh*
I fixed it. What I did:
Used File Manager to navigate to /system/app/ and changed the name of Superuser.apk to Superuser.apk.bak
Re-flashed the nightly I was running (2012-08-21)
Used File Manager to navigate to /system/app/ and delete Superuser.apk.bak
Fixed.

Apk Mirror

Anyone know why the samsung apps from apk mirror won't install?
phenomenalblaze said:
Anyone know why the samsung apps from apk mirror won't install?
Click to expand...
Click to collapse
Delete original 1 first then install
Im not rooted. Normally you can just install over the original
I didn't know you could do that
as other stated, uninstall or clear cache and data on present galaxy apps. then attempt reinstall
Still. not working. Got them to uninstall with adb, but installing them fails with both

Disabling apps

Hi. I have a problem when trying to disable orginal YouTube app from app manager. I have disabled YouTube but its appearing again within hours or so.
After its back google play wants to update.
Anyone?
n0zzz said:
Hi. I have a problem when trying to disable orginal YouTube app from app manager. I have disabled YouTube but its appearing again within hours or so.
After its back google play wants to update.
Anyone?
Click to expand...
Click to collapse
Disable it through adb instead..
TheInfiniteAndroid said:
Disable it through adb instead..
Click to expand...
Click to collapse
Thank you very much! it worked
Do we lose warranty by disabling sistem apps by adb? (App lime Video, Huawei services, swiftkey, hivoice...) Some of them It can't be disabled by settings
Leoxur said:
Do we lose warranty by disabling sistem apps by adb? (App lime Video, Huawei services, swiftkey, hivoice...) Some of them It can't be disabled by settings
Click to expand...
Click to collapse
No you don't lose warranty
Anyone knows how to disable system apps like huawei browser and app gallery. I used following adb command but failed:
pm disable com.huawei.appmarket
This is really annoying.
Reeb_Lam said:
Anyone knows how to disable system apps like huawei browser and app gallery. I used following adb command but failed:
pm disable com.huawei.appmarket
This is really annoying.
Click to expand...
Click to collapse
Probably because that's not the right command
TheInfiniteAndroid said:
Probably because that's not the right command
Click to expand...
Click to collapse
Can you please tell me.
Reeb_Lam said:
Can you please tell me.
Click to expand...
Click to collapse
pm uninstall -k --user 0 com.huawei.appmarket
TheInfiniteAndroid said:
pm uninstall -k --user 0 com.huawei.appmarket
Click to expand...
Click to collapse
Thanks mate. Also no way of diabling app instead of uninstalling??
Reeb_Lam said:
Thanks mate. Also no way of diabling app instead of uninstalling??
Click to expand...
Click to collapse
adb shell pm disable-user --user 0 com.huawei.appmarket
TheInfiniteAndroid said:
adb shell pm disable-user --user 0 com.huawei.appmarket
Click to expand...
Click to collapse
Thank you very much.
You can also use that script i found on a spanish site and you will have toi change "uninstall" by "disable" in the file. https://www.htcmania.com/showthread.php?t=1460035
Follow instructions to keep apps you want and everything will be fine.

Categories

Resources