命令行启动Android模拟器并push文件的方法
在模拟器所在的tools目录下执行1.启动AVD3.0模拟器./emulator -avd AVD3.02.指定模拟器存储空间的大小,非SD卡的大小,只有这样才能向模拟器system目录下push文件,否则会报out of memory的错误./emulator -partition-size 256 -avd AVD3.03.push a.so 到system/lib目录下的方法(1)进入adb shell./adb shell(2) 退出shellex...