android adb 向模拟器上传文件

 

1.设定启动虚拟机的内存

  emulator -avd (vmname)  -partition-size (integer size);

 

2.设定abd的权限(可上传文件)

  adb remount

 

3. 上传文件

adb push localpath remotepath

 

4.  查看devices的运行情况 

adb devices 

 

5. 进入指定emulator的shell环境

adb shell

 

你可能感兴趣的:(android,虚拟机,shell,Integer)