adbでデバイスを指定してpush

実機とエミュレータを接続してるときはadbでpushしようとするとデバイスを指定しないといけない オプションを付ける。adbと打つと、以下が出るのでそのようにする
-d    - directs command to the only connected USB device returns an error if more than one USB device is present.
-e    - directs command to the only running emulator. returns an error if more than one emulator is running.
-s <specific device>    - directs command to the device or emulator with the given serial number or qualifier. Overrides ANDROID_SERIAL
environment variable.
なので、
adb -e push local /sdcard/
とかで、エミュレータにファイルをpushできる

コメント

タイトルとURLをコピーしました