[Q] How to bypass unlock pattern - Galaxy Ace S5830 Q&A, Help & Troubleshooting

I am just asking this for informational purpose, is it possible to bypass the unlock pattern of android by any means. OK the real thing is that my frnd challenged me that it can't be bypassed by any means. He's kind a bigger noob than me in these kind of things. I know a way of formating all data thru recovery but by that way all data is gone. So is there any other way
Sent from my GT-S5830 using xda premium

Uhh.....use adb and kill the lockscreen service ?
"Friends forever." - Ventus

CallMeVentus said:
Uhh.....use adb and kill the lockscreen service ?
"Friends forever." - Ventus
Click to expand...
Click to collapse
Can you tell the command or little more detail.
Sent from my GT-S5830 using xda premium

atishey23 said:
Can you tell the command or little more detail.
Sent from my GT-S5830 using xda premium
Click to expand...
Click to collapse
I'd assume you want to run something along the lines of:
Code:
adb shell
This will bring up a Linux shell for the device...
Code:
$ ps aux
This lists all running processes (don't type the $)
Code:
$ pkill [process]
This will kill the process if you replace [process] with the process name for the lockscreen process...
A few issues that you will probably have are:
adb might not be enabled on the device if he doesn't do any dev stuff - it needs to be turned on in Developer Options...
The lockscreen process is probably going to be run by root (oe), so you might not be able to kill it or even see that its running with the above commands, instead you need to run
Code:
$ su
before trying the above commands, however, the phone probably needs to be already rooted and might require user input to give permissions for this, unless the option for root over adb is enabled in Developer Options aswell.
However, if you were really desperate, you could probably figure out a root method - basically use the commands in the "root.zip" flashable package, in order to root the phone over adb, but you could push a superuser app which gave permission by default - by changing the source of the one you normally install - I'm pretty sure its open source... then you could run the commands fine, however, there is a risk of bricking the device if you do something wrong.
Also, the best way to work out which process is the lockscreen is to run the command without lockscreen enabled and then with it enabled, and find the difference... that is, of course, if its not obvious.
All that said, the lockscreen process might be part of the system ui or something, so you'd have to reset the lockscreen settings, by overwriting the settings file for the phone (but all the data would be kept on there), then restarting the phone or killing the process & starting it again....
Anyway, hope some of this helps!

Format phone.....Flash via Odin...So many ways..

Prawesome said:
Format phone.....Flash via Odin...So many ways..
Click to expand...
Click to collapse
He said he doesnt wanna format!
And flashing the same baseband over odin wont wipe a thing!
Sent from my GT-S5830 using Tapatalk 2

galaxyace152 said:
He said he doesnt wanna format!
And flashing the same baseband over odin wont wipe a thing!
Sent from my GT-S5830 using Tapatalk 2
Click to expand...
Click to collapse
So? I am stating the ways someone could bypass Pattern unlocks lol

Whippopotamus said:
I'd assume you want to run something along the lines of:
Code:
adb shell
This will bring up a Linux shell for the device...
Code:
$ ps aux
This lists all running processes (don't type the $)
Code:
$ pkill [process]
This will kill the process if you replace [process] with the process name for the lockscreen process...
A few issues that you will probably have are:
adb might not be enabled on the device if he doesn't do any dev stuff - it needs to be turned on in Developer Options...
The lockscreen process is probably going to be run by root (oe), so you might not be able to kill it or even see that its running with the above commands, instead you need to run
Code:
$ su
Anyway, hope some of this helps!
Click to expand...
Click to collapse
Thanks dude, very much. These commands were of great knowledge, I was able to list down all processes but unable to find the one of lockscreen, as there were many processes, may be this is because I am on custom rom. Thanks again.
Sent from my GT-S5830 using xda premium

Related

Access thru computer (mac os)

What is the simplest way to send commands to my phone (HTC Hero CDMA Sprint) through my computer (Mac OS)?
I haven't explored Android SDK yet. I rooted my phone through Terminal and bash_profile file. I'm interested in:
- how to push .apk's to the device
- how to install a recovery image if my phone can't reboot and there is not a recovery image present
Thanks!
Android sdk is the easiest
-------------------------------------
Sent via the XDA Tapatalk App
What I do is use terminal and cd to the Android sdk/tools folder. After that use the ./adb commands, which there are several tutorials for and own your phone. Hope this is clear, doing it on my phone
-------------------------------------
Sent via the XDA Tapatalk App
What I do is use terminal and cd to the Android sdk/tools folder. After that use the ./adb commands, which there are several tutorials for and own your phone. Hope this is clear, doing it on my phone
Click to expand...
Click to collapse
Sweet. Thanks. I've searched the Android SDK site and it seems that I need other software or plunging such as Eclipse and Java. I'm not ruling these out eventually but know I'm not ready to get in this deep yet to start developing apps or customizing roms. Also, after a Google search all the queries came back with options for rooting your device which I've already done. If there's a good easy tutorial, would you mind posting a link?
-------------------------------------
Sent via the XDA Tapatalk App
When I get home from work I'll find something for you.
-------------------------------------
Sent via the XDA Tapatalk App
joshuaharp said:
Sweet. Thanks. I've searched the Android SDK site and it seems that I need other software or plunging such as Eclipse and Java. I'm not ruling these out eventually but know I'm not ready to get in this deep yet to start developing apps or customizing roms. Also, after a Google search all the queries came back with options for rooting your device which I've already done. If there's a good easy tutorial, would you mind posting a link?
-------------------------------------
Sent via the XDA Tapatalk App
Click to expand...
Click to collapse
Just download the 2.1 SDK, cd to Android/SDK/tools, and use ./adb, I think it can tell you some commands too.
I made an app to put my phone in recovery using ./adb so I wouldn't need to go through the trouble everytime, I just go to spotlight, type "recovery", and it puts it into recovery.
I might make an app/interface for Mac OS later for ADB commands (recovery, push files, etc)
derekwilkinson said:
Just download the 2.1 SDK, cd to Android/SDK/tools, and use ./adb, I think it can tell you some commands too.
I made an app to put my phone in recovery using ./adb so I wouldn't need to go through the trouble everytime, I just go to spotlight, type "recovery", and it puts it into recovery.
I might make an app/interface for Mac OS later for ADB commands (recovery, push files, etc)
Click to expand...
Click to collapse
That would be awesome dude...
joshuaharp said:
That would be awesome dude...
Click to expand...
Click to collapse
Don't hold your breath though, I have been working a lot, but I might make it in the next few weeks.
The only main problem is that I'm having trouble getting variables to run in the shell script. I think it might be possible with Automator (or AppleScript), but I will keep trying
Well, even though it may not be useful anymore, here are the links, as promised
Rooting guide for mac (What I used and a great way to get familiar with adb on the mac ) http://forum.xda-developers.com/showthread.php?t=581686
And here's an adb tutorial that was put together at the request of toast on the EVO 4G forum. http://forum.xda-developers.com/showthread.php?t=694250

OTA Benefits? Unrevoked4Eva?

"EXCUSE ME" If Someone Else Has Something Similar Posted, But I Got Tired Of Reading A Thousand Posts Just To "ALMOST" Get My Question Answered!!
Anyway I Know The Last "OTA" Sent Out From Sprint or HTC (Whoever- Sent It Out) *BROKE* My Ability To Access The "Clockwork Recovery" Menu-Screen!
Since Then I Turned Security From "On to Off" With "Unrevoked-4ever" But I've Read That Even After Flashing "Unrevoked-4ever" It's Possible For Them To Send Me Another "OTA" & Re-break My Root Access!!
Does Anyone Know If What I Read Is "TRUE or Bull-Sh#%".... Am I Really "Unrevoked-4ever"???
1 More Thing What's The Benefits Of A OTA???
Sent from my HERO200 using XDA App
DISABLE OTA UPDATES!!!!
To disable OTA updates that will patch this exploit, (after rooting and booted after creating a nandroid backup) run the following commands from Command Prompt.
Code:
cd C:\android-sdk-windows\tools
Code:
adb remount
Code:
adb shell
Code:
mv /system/etc/security/otacerts.zip /system/etc/security/otacerts.zip.bak
After doing this, the OTA updates WILL still download, BUT they will not pass signature checks to flash because of the code you just entered.
Did you do this when you rooted your phone? ^^
Pulled this from [Guide] How to Root Sprint 2.1 CDMA Hero
Twolazyg said:
DISABLE OTA UPDATES!!!!
To disable OTA updates that will patch this exploit, (after rooting and booted after creating a nandroid backup) run the following commands from Command Prompt.
Code:
cd C:\android-sdk-windows\tools
Code:
adb remount
Code:
adb shell
Code:
mv /system/etc/security/otacerts.zip /system/etc/security/otacerts.zip.bak
After doing this, the OTA updates WILL still download, BUT they will not pass signature checks to flash because of the code you just entered.
Did you do this when you rooted your phone? ^^
Pulled this from [Guide] How to Root Sprint 2.1 CDMA Hero
Click to expand...
Click to collapse
No... To Tell You The Truth I Rooted With "Universal Androot" Because I Was Somewhat *NEW* To The Whole "ADB/SDK/ROOT" Thing, But Since I've Probably Learned 20X More Then I Did! But As Far As "ADB" Goes I'm Still Kind Of Scared To Try Out!! Although I Have A Wireless ADB App Installed On My Phone, Does That Work, Or I Should Say Will That Work For The Command You Suggested? Also Thanx For Your Help!!
Sent from my HERO200 using XDA App
PMGRANDS said:
No... To Tell You The Truth I Rooted With "Universal Androot" Because I Was Somewhat *NEW* To The Whole "ADB/SDK/ROOT" Thing, But Since I've Probably Learned 20X More Then I Did! But As Far As "ADB" Goes I'm Still Kind Of Scared To Try Out!! Although I Have A Wireless ADB App Installed On My Phone, Does That Work, Or I Should Say Will That Work For The Command You Suggested? Also Thanx For Your Help!!
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
I've never used an app to root my phone, I followed a guide and did it right the first time. Here is the guide thread. What is the wireless ADB app you're using? Try terminal emulator with the commands, or take 15 min and un-root your phone, then re-root using this guide, that may solve the other issue you're having with the wigets and icons being odd. Let me know how this works for you.
PMGRANDS said:
No... To Tell You The Truth I Rooted With "Universal Androot" Because I Was Somewhat *NEW* To The Whole "ADB/SDK/ROOT" Thing, But Since I've Probably Learned 20X More Then I Did! But As Far As "ADB" Goes I'm Still Kind Of Scared To Try Out!! Although I Have A Wireless ADB App Installed On My Phone, Does That Work, Or I Should Say Will That Work For The Command You Suggested? Also Thanx For Your Help!!
Sent from my HERO200 using XDA App
Click to expand...
Click to collapse
If you search android Dev section I've posted how to install adb in like 15 min also in the same thread its another guide as well either way you can have adb in 15 or 20 min tops real simple and the commands he posted will work fine I'm mobile @ work so I can't link but good luck
Root-Hack-Mod-Always™
Twolazyg said:
I've never used an app to root my phone, I followed a guide and did it right the first time. Here is the guide thread. What is the wireless ADB app you're using? Try terminal emulator with the commands, or take 15 min and un-root your phone, then re-root using this guide, that may solve the other issue you're having with the wigets and icons being odd. Let me know how this works for you.
Click to expand...
Click to collapse
Okay, I Think I Just Might Do That... Also As Far As The App I Have, It's Called "ADB Wireless", But I Also Have "Terminal Emulator"!! Which One Would You Use?? "Terminal Emulator" Guess That's Why You Posted It Obviously??.... Lol!! 1 More Thing What's The Benefits Of The OTA's?? Seems Like They Only Eff-Up Root Access!! And Thanx Once Again 4 Your Help!!
Sent from my HERO200 using XDA App
laie1472 said:
If you search android Dev section I've posted how to install adb in like 15 min also in the same thread its another guide as well either way you can have adb in 15 or 20 min tops real simple and the commands he posted will work fine I'm mobile @ work so I can't link but good luck
Root-Hack-Mod-Always™
Click to expand...
Click to collapse
Thank You!!
Sent from my HERO200 using XDA App

[MOD/GUIDE]This is HOW TO Remove HTC Lockscreen and Get Default Android one.

Hello Everyone,
This is Just a small and easy mod/guide for all those who want Default Android Lockscreen and like me hate the HTC slide down Lockscreen:
Usual Warning : I am not responsible if by doing the steps below ::
You brick your phone (Highly unlikely if you follow only given steps).
Your GF starts loving your phone and wants it.
Your GF gets pregnant. Its you who did it .. well hopefully
Let's not delete your lockscreen just keep it in case you want it back. yeah yeah i am all for safety just like my rom.
(Always be safe)
STEP BY STEP GUIDE​
Connect your phone and use ROM manager to reboot into recovery alternatively you can disconnect your phone reboot into recovery (vol down+power) and then connect your cable when you can see the green text.
Select partition menu or mount ** (dont remember the option its mount something something) depending on your recovery version and Mount system
Now i hope you know how to use adb. (Download and install android sdk)
Open command prompt (cd "path to android-sdk-windows/tools" without quotes) on my pc for example it is
Code:
cd C:\android-sdk-windows\tools
If you're on LINUX i am sure you know what to do.next all instructions are same:for Windows and Linux
Run following commands
Code:
adb remount
adb shell
cd /system/app
mv HtcLockScreen.apk HtcLockScreen.bak
exit
Now you will get a nice transparent default android lockscreen.
In case you want your stock HTC lockscreen back do this
Code:
adb remount
adb shell
cd /system/app
mv HtcLockScreen.bak HtcLockScreen.apk
exit
I have tried this with SUnAaBh ROM and it works flawlessly and ideally should work with every ROM including those not meant for HTC Wildfire.
The suggestion in the next post i.e post No.2 will cause your framework to change i.e your Theme and look of icons on notification bar, dropdown bar, battery icon etc SO to Preserve your framework just INSTALL THIS FILE..its same from attachment.
Hit Thanks if it helped.
This doesnt fix the Alarm clock bug that appears when removing the HTC lockscreen.
This does:
http://forum.xda-developers.com/showpost.php?p=10192875&postcount=2
Using it on Wildpuzzle 0.1 with no problems.
Will using this work:
- If you set a alarm ( for waking up or something ), does it work then?
- If you start Angry Birds, to make it working I must power off my screen, go to lockscreen and unlock it. And then I could play. Does this work too with this lockscreen?
Thanks in advance!
Marc. said:
- If you start Angry Birds, to make it working I must power off my screen, go to lockscreen and unlock it. And then I could play. Does this work too with this lockscreen?
Click to expand...
Click to collapse
I am using CM7 which uses the default Android Lockscreen, and, the Lock Unlock Procedure works for Angry Birds.
Alex_GP said:
This doesnt fix the Alarm clock bug that appears when removing the HTC lockscreen.
This does:
http://forum.xda-developers.com/showpost.php?p=10192875&postcount=2
Using it on Wildpuzzle 0.1 with no problems.
Click to expand...
Click to collapse
Oops did not know of the fix.. i was working on my own thanks a lot..u saved me some work..people can use this only..i hope HewGballs wont mind..
A great post - for those that need it and much better then using ADP app etc.
warriorvibhu said:
Oops did not know of the fix.. i was working on my own thanks a lot..u saved me some work..people can use this only..i hope HewGballs wont mind..
Click to expand...
Click to collapse
No problem.
adb wont start!! help pls.. it opens just for a split second with some texts flashing then gone!!
wildfire.daniel said:
adb wont start!! help pls.. it opens just for a split second with some texts flashing then gone!!
Click to expand...
Click to collapse
Please give some details..did you double click ADB.. you should not do that::
Give some details ::
YOUR OS ?
what exactly you did.. ?
Screenshot would be nice!
Too few posts inlcude a screenshot of what they're talking about!
I have an HTC, so have no idea what the "Default One" looks like!?
Is it possible to start making these threads a "little" more user friendly?
flipmode_11 said:
Screenshot would be nice!
Too few posts inlcude a screenshot of what they're talking about!
I have an HTC, so have no idea what the "Default One" looks like!?
Is it possible to start making these threads a "little" more user friendly?
Click to expand...
Click to collapse
Can you please be a very little more tech savvy i google and found this image in less than 5 seconds.. Start using google...please
http://t3.gstatic.com/images?q=tbn:ANd9GcTupH281Sv4BurvML-kupZWBHeG014DvtPTX-edhaGLIa_PEvciJg&t=1
The background is transparent.. it will show ur wallpaper as background..Which is black here.. ::
in cmd, i typed c:/path to sdk/tools and a folder showed up.. i double clicked adb.exe and it ran for a split second then gone... my os is windows xp sp2.. so i should not double click.. what should i do??
Sent from my HTC Wildfire using XDA App
and the "cd" before the c:/blabla/blabla does not work..
Sent from my HTC Wildfire using XDA App
I've tried this a minute ago! And it's really simple.
1. Download the android-sdk-windows folder and place it anywhere
2. start cmd.exe ( open it via start > cmd.exe )
2. Enter: cd: C:\whatever\whatever\android-sdk-windows\platform-tools
3. enter: adb.exe
4. then enter the things from the first page ( the adb commands )
5. unmount system ( ! ) on phone
6. reboot phone.
And you got it! I really don't ever used adb! So it's really simple with instructions. Maybe you could include my instructions?
can somebody show screenshot with default screen lock and htc? because i dont understand know about what are you talking. I had one screen lock since i bought mob with 2.1 android and know i have other one with 2.2. / 2.3 android. I nothing changed, nothing deleted and i like it.
wildfire.daniel said:
in cmd, i typed c:/path to sdk/tools and a folder showed up.. i double clicked adb.exe and it ran for a split second then gone... my os is windows xp sp2.. so i should not double click.. what should i do??
Sent from my HTC Wildfire using XDA App
Click to expand...
Click to collapse
Did i ask you to double click adb?
please follow instructions..if u are not sure..
IN CMD u must type following in the code box..
Start cmd
Code:
cd c:/path to sdk/tools
adb remount
adb shell
Rest all follow as in first post..
vilks said:
can somebody show screenshot with default screen lock and htc? because i dont understand know about what are you talking. I had one screen lock since i bought mob with 2.1 android and know i have other one with 2.2. / 2.3 android. I nothing changed, nothing deleted and i like it.
Click to expand...
Click to collapse
read post 11
warriorvibhu said:
Did i ask you to double click adb?
please follow instructions..if u are not sure..
IN CMD u must type following in the code box..
Start cmd
Code:
cd c:/path to sdk/tools
adb remount
adb shell
Rest all follow as in first post..
read post 11
Click to expand...
Click to collapse
http://t3.gstatic.com/images?q=tbn:ANd9GcTupH281Sv4BurvML-kupZWBHeG014DvtPTX-edhaGLIa_PEvciJg&t=1
ok. so u hate this screen lock or like? because i have the same and i like very much. i also added to screen lock two buttons: sms and phone. thats faster to to write sms or call.
You can also type in adb Shell umount /system to unmount from command line
warriorvibhu said:
Did i ask you to double click adb?
please follow instructions..if u are not sure..
IN CMD u must type following in the code box..
Start cmd
Code:
cd c:/path to sdk/tools
adb remount
adb shell
Rest all follow as in first post..
read post 11
Click to expand...
Click to collapse
Sent from my HTC Wildfire using XDA App
vilks said:
http://t3.gstatic.com/images?q=tbn:ANd9GcTupH281Sv4BurvML-kupZWBHeG014DvtPTX-edhaGLIa_PEvciJg&t=1
ok. so u hate this screen lock or like? because i have the same and i like very much. i also added to screen lock two buttons: sms and phone. thats faster to to write sms or call.
Click to expand...
Click to collapse
you are talking about widget locker this is no external app its just stock AOSP android lock screen..
warriorvibhu said:
Oops did not know of the fix.. i was working on my own thanks a lot..u saved me some work..people can use this only..i hope HewGballs wont mind..
Click to expand...
Click to collapse
How to apply these HewGballpatches ... ?? by flashing them right ?? i am using wildpuzzle v8 .... shd work 4 it ryt ...

What is ADB shell?

What is it ? ADB Shell . is it CMD command on Windows or what ?
muslimbaha said:
What is it ? ADB Shell . is it CMD command on Windows or what ?
Click to expand...
Click to collapse
https://developer.android.com/tools/help/adb.html
It's Android Debug Bridge. Basically, it's a command line interface from your PC to your phone. Think of a terminal emulator that you run on the phone itself. ADB is pretty much the same, but from a PC. It is part of Android SDK. You can also find it included in many installation packages posted here on XDA, e.g. CWM recovery. There is an executable and a couple of DLLs.
P.S.: TrymHansen beat me to it...
kt-Froggy said:
It's Android Debug Bridge. Basically, it's a command line interface from your PC to your phone. Think of a terminal emulator that you run on the phone itself. ADB is pretty much the same, but from a PC. It is part of Android SDK. You can also find it included in many installation packages posted here on XDA, e.g. CWM recovery. There is an executable and a couple of DLLs.
P.S.: TrymHansen beat me to it...
Click to expand...
Click to collapse
Sorry, but i know what it is now, how do i run it though? im trying to follow the htc desire hd guide to root my phone, which everything is done up until the point i have to test that i have root in debug mode. Not sure how to do this? run abd.exe? it just showed me a cmd window which runs and then dissapears.
If you got your phone rooted or want to test it run adb.exe shell the type su and hit enter. If the prompt change from $ to # you have root access
Sent from my LG-P990 using xda app-developers app
bitdomo said:
If you got your phone rooted or want to test it run adb.exe shell the type su and hit enter. If the prompt change from $ to # you have root access
Sent from my LG-P990 using xda app-developers app
Click to expand...
Click to collapse
What is likely to be the problem if it says SU permission denied?
If you are on stock, that means that you have no root access. If you have cm10 or cm10.1 you have to enable adb root access somewhere in the settings. I am sorry but I can not tell you at the moment where to enable it because I am on stock right now.
Sent from my LG-P990 using xda app-developers app
kt-Froggy said:
It's Android Debug Bridge. Basically, it's a command line interface from your PC to your phone. Think of a terminal emulator that you run on the phone itself. ADB is pretty much the same, but from a PC. It is part of Android SDK. You can also find it included in many installation packages posted here on XDA, e.g. CWM recovery. There is an executable and a couple of DLLs.
P.S.: TrymHansen beat me to it...
Click to expand...
Click to collapse
Thanks Bro for this information

Removing System Apps

I'm rooted and am trying to mount the system to remove bloatware apps... However everytime Titanium Backup removes it and I reboot it's still there...
Anyone have any ideas?
System is protected: you can't modify it while the phone is booted. You'll have to make a zip or whatever to delete it in recovery.
You have to be kidding me...
I've spent all day long trying to root this bastard phone and that didn't work then I managed it and now I can't disable, remove any apps ?
So much for HTC being dev friendly
fkofilee said:
You have to be kidding me...
I've spent all day long trying to root this bastard phone and that didn't work then I managed it and now I can't disable, remove any apps ?
So much for HTC being dev friendly
Click to expand...
Click to collapse
It seriously took you all day to root? What went wrong?
Did you try just freezing the app instead?
Brand new trick from HTC?Didn't have it in hox+
Sent from my Nexus 4 using Tapatalk 2
afilopou said:
Brand new trick from HTC?Didn't have it in hox+
Sent from my Nexus 4 using Tapatalk 2
Click to expand...
Click to collapse
So you can no longer go into ES explorer, mount root/system go to system > apps and delete whatever you want ?
Sent from my HTC Incredible S using Tapatalk 2
The recovery flashed but wouldnt boot , managed to get round it when i discovered POB with his superboot Thank god for the desire C
Then i realised that i couldnt flash anything because I manged to install 6.0.2.8 as a boot img, and 6.0.3.0 as a proper recovery.
Then i didnt have any files on the device to flash boohoo so i managed to get ADB sideload working through the AIO One Toolkit... And managed to flash AHRD finally getting a working device,
As you see Im a seasoned vet at these things but the HTC One has been the first device that has stumped me....
----------------------
The apps issue is not unkwown for HTC however they havent done this for a while.... Back with the G2 they did exactly the same thing and yes ive frozen them but there should be away to remove system apps for us through root.... But i cant remember how, Throwing it into ADB Shell and requesting SU along with a Remount works fine but still would like to remove the apps.
Im also looking for someone with a locked phone... (Sim Locked) i have a theory and it worked on the Desire C Anyone wanna help?
fkofilee said:
I'm rooted and am trying to mount the system to remove bloatware apps... However everytime Titanium Backup removes it and I reboot it's still there...
Anyone have any ideas?
Click to expand...
Click to collapse
Delete the apps with titanium and power off the phone. Don't do a restart.
Already tried that ^_^
You need to flash a custom kernel with a modified ramdisk to disable system protection Without doing that you're like deleting an app on windows with deepfreeze on it
Is that the only solution?
There are so many bloated useless and intrusive (cr)apps on this phone it's unbelievable.
Other solution is boot in recovery and delete it there. Either thru adb while in recovery mode, flashable zip or through file manager(if you're using TWRP). Other than that nope
Hmmm I'm thinking adb through recovery here but how do I got about doing this?
fkofilee said:
Hmmm I'm thinking adb through recovery here but how do I got about doing this?
Click to expand...
Click to collapse
the joys of a s-on devices
read up on adb commands...
or use the zip I attached and edit line 18 in this format with the apps you want to get rid of, use a file explorer to get the proper names.
make a backup first in case you mess up something
Code:
delete("/system/app/xxxxx.apk", "/system/app/xxxx.odex", "/data/app/xxxxx.apk");
The best way to remove apps in recovery is through adb:
Code:
adb shell
sysrw
rm /system/app/abc.apk
the simple way is ROM CLEANER, but isn't available yet for the One.
cheers
fkofilee said:
Hmmm I'm thinking adb through recovery here but how do I got about doing this?
Click to expand...
Click to collapse
type the following commands.
Code:
adb shell
su
cd /system/app/
ls
rm <insert the name of the apk you want to delete here which can be found in the list shown by the ls command>
Riyal said:
type the following commands.
Code:
adb shell
su
cd /system/app/
ls
rm <insert the name of the apk you want to delete here which can be found in the list shown by the ls command>
Click to expand...
Click to collapse
I dont have a One, and dont plan on having one (ever, thanks to this thread! I think I'll stick to Sony, they have instructions to unlocking bootloader on their official website)
BUT, if the system is locked, it should be locked trough ADB too, so I guess what I'd try is install busybox, custom recovery, go into recovery, connected it to the PC (or a mac, but since we're on no-apple forum, I'll assume PC), mounting system there and doing your thing.
You can install busybox and custom recovery right?
Edit: never mind, I should really learn to read. Sometimes I think I'm dyslexic a little, just for words, not letters.
I did not see the 'recovery' part mentioned.
Anywho, mounting system is what you forgot, so at least I said something helpful
ogdobber said:
the joys of a s-on devices
read up on adb commands...
or use the zip I attached and edit line 18 in this format with the apps you want to get rid of, use a file explorer to get the proper names.
make a backup first in case you mess up something
Code:
delete("/system/app/xxxxx.apk", "/system/app/xxxx.odex", "/data/app/xxxxx.apk");
Click to expand...
Click to collapse
MacHackz said:
The best way to remove apps in recovery is through adb:
Code:
adb shell
sysrw
rm /system/app/abc.apk
Click to expand...
Click to collapse
limx said:
the simple way is ROM CLEANER, but isn't available yet for the One.
cheers
Click to expand...
Click to collapse
Riyal said:
type the following commands.
Code:
adb shell
su
cd /system/app/
ls
rm <insert the name of the apk you want to delete here which can be found in the list shown by the ls command>
Click to expand...
Click to collapse
issak42 said:
I dont have a One, and dont plan on having one (ever, thanks to this thread! I think I'll stick to Sony, they have instructions to unlocking bootloader on their official website)
BUT, if the system is locked, it should be locked trough ADB too, so I guess what I'd try is install busybox, custom recovery, go into recovery, connected it to the PC (or a mac, but since we're on no-apple forum, I'll assume PC), mounting system there and doing your thing.
You can install busybox and custom recovery right?
Edit: never mind, I should really learn to read. Sometimes I think I'm dyslexic a little, just for words, not letters.
I did not see the 'recovery' part mentioned.
Anywho, mounting system is what you forgot, so at least I said something helpful
Click to expand...
Click to collapse
All Wonderful Ideas folks, however i had a go at this last night, it was a fricking nightmare even mounting ADB through recovery

Categories

Resources