Possible Duplicate:
How to push file from PC to andriod phone programatically?
I want to push file from PC to android mobile using abd push command i know for the emulator but how to fo that for phone?
Possible Duplicate:
How to push file from PC to andriod phone programatically?
I want to push file from PC to android mobile using abd push command i know for the emulator but how to fo that for phone?
As according to me..through command line,First enter inside android-sdk/tools and then use the command as:
adb -s (your phone recognising number) shell [you can get your phone recognising number as adb devices(attach ur device as well)]then,
adb push (your filename) /sdcard/(filename)
Thanks..