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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
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..