Quote:
Originally Posted by ALi
can we get instructions on how to remove the htclocksceen via adb? There are alot of Noobs out here concerning adb including me.
Thanks,
ALi
|
You got it
SIMPLE "HOW TO" PUSH VIA ADB
Below are pushable apk's you may be looking for. I've gotten a few questions on how to push these to your phone via adb....here is a quick run down of the procedure, and if anyone has anything to add to this "PM" me and I'll add it.
1) Choose the client apk you wish to push to your phone, and download it.
2) Move that file to your
C:\android-sdk-windows\tools folder
3) Plug your phone into your computer via USB cable and set to "Charge Only"
4) Press the "Start" button on your computer, and in the search box type
cmd - then hit enter (
a little black box should pop up).
5) Copy and paste this as your first command
cd C:\android-sdk-windows\tools - hit enter.
6) Then this command next
adb remount - then hit enter.
7) Then this command
adb push xxxxx.apk /system/app/ - then hit enter.
Then this command
exit
Obviously xxxx is going to be replaced with what ever .apk you are looking to push
Sometimes you may need to reboot to see the effect take place, as it is with a lockscreen, but not all. Keep in mind, a reboot is any devices best friend
SIMPLE "HOW TO" REMOVE VIA ADB
1) Plug your phone into your computer via USB cable and set to "Charge Only"
2) Press the "Start" button on your computer, and in the search box type
cmd - then hit enter (
a little black box should pop up).
3) Copy and paste this as your first command
cd C:\android-sdk-windows\tools - hit enter.
4) Then this command next
adb remount - then hit enter.
5) Then this command
adb shell (
you will see a # pop up in the next line)
6) Then this command
rm /system/app/xxxx.apk - then hit enter.
Then this command
exit
Obviously xxxx is going to be replaced with what ever .apk you are looking to remove