Ok I have adb set up on my pc. It does recognize the phone when I type <adb devices>. The problem I'm having is when I go to the shell and type: adb install c:\<file path used> it says <adb: not found>
What am I doing wrong here? Also is what I'm doing even possible??
Try this out:
Make sure you have Settings>Applications>Development>USB debugging mode (ON/Checked). Also when you hook up the USB cable make sure you select Charging Only. The system version of my phone is 1.13.604.MB810 (Not sure if that matters but just to keep in mind). OK once you have that set.
Process was done through Windows 7 32-bit so not sure it will work for 64-bit but give it a try.
Step 1:
You want to install the drivers for the Droid X if you had before uninstall them unless its the same like the one I uploaded the zip file name
ADBDriver_v3_Google.zip you want to extract this folder to your desktop or anywhere you can locate it. Then open up Device Manager and you should see a Tab that says Android Phone with a device beneath it with a yellow icon unless you already have the driver installed for it. If you see the yellow icon right click and select update driver, the wizard should pop so
Click on Browse my computer>Let me pick from a list>Click on Have Disk>Browse for the extracted files for the folder named USB_Driver then select the
Android_winusb and click OK. Under Model you should see one that says
Android Composite ADB interface so install that one. Reboot if you want but not needed.
Step 2:
Download the SDK tools
click here!
Once you download that folder, extract them where you can locate the folder and rename the folder to sdk or whatever floats your boat. I like to put it on the C:\ drive or whatever your drive letter is. Example: C:\sdk
Then you want to download
droidxroot_v2.zip file and extract this to your
tools folder that is inside the SDK folder that we renamed. Example: C:\sdk\tools
Once you done that open up command prompt so go to search programs and files>then type>
cmd and select it.
Once your in Command Prompt type
cd \ to go to the root of your drive
If you decided to follow my naming scheme you should type
cd \sdk\tools
Double check that you have
USB debugging ON and
USB to Charge Only.
Refer to this forum for the commands to Root the Droid, which I have not had any issues
click here! and start on
Step 8 once you get to the part where you need to
toggle a widget, toggle Wifi ON and OFF which worked for me.
If you have errors while rooting your Droid X refer to this article almost towards the end there is a section that is called Errors while rooting your Droid X
click here!
Step 3:
Once successfully rooted your phone refer to this forum
click here! There is a section at the very bottom of the first post that says Did you delete Something, this is where you can download all the apps of the Droid X. You want to extract those files into the folder tools again under the sdk folder, then you want to install all those apps into your phone or refer to this forum to see what apps are needed
click here! So unplug your phone from USB cable and plug it back in or just type exit so it takes you back to C:\sdk\tools and start pushing all the backup files into your sdcard you just downloaded which you should do like this example:
Example for 1 app installation
C:\sdk\tools>
adb push whateverapp.apk /sdcard/whateverapp.apk
C:\sdk\tools>
adb shell
$
su
#
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
mount -o remount,rw -t yaffs2 /dev/block/mtdblock3 /system
#
cp /sdcard/whateverapp.apk /system/app/whateverapp.apk
Repeat for all apps but this is an example on how you would do it for one app I would suggest pushing all the apps that you need into the sdcard then run adb shell to start installing those apps into the phone and just need to do the mount command once then do the cp command for all the needed installation apps.
Hopefully this helps which I've been a happy camper with this awesome phone.