Push a local file to a android device with ADB
#1 Download ADB http://developer.android.com/sdk/index.html
#2 Open the command prompt and navigate to the exact location of adb or just try to type adb inĀ the console and see if the command is recognized
#3 You have to check if adb finds your android device by using:
adb devices
#4 Then you can simple type: adb push “local path+file without quotes” “remote path+file without quotes”
e.g. adb push test.apk /sdcard
For more information: http://developer.android.com/tools/help/adb.html
Leave a Reply