本文主要是介绍Mac上android emulator模拟器使用(三十一),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
Mac上android emulator模拟器使用
0.首先在eclipse或者android studio创建android模拟器注意:选择armv7或armv8都可以,模拟器版本建议选择比较新的1.配置环境
# emacs /etc/profile
#NDK
export PATH=$PATH:~/android-sdks/ndk-bundle
#SDK
export PATH=$PATH:~/android-sdks/platform-tools
export PATH=$PATH:~/android-sdks/tools 2.启动模拟器(arm-*)
注意:先使用android studio创建一个android虚拟机
# 查看
# android list avd
#启动模拟器
# cd ~/android-sdks/emulator# ./emulator -help
Android Emulator usage: emulator [options] [-qemu args]options:-list-avds list available AVDs -writable-system make system & vendor image writable after 'adb remount'-memory <size> physical RAM size in MBs
....//第一次启动执行
# ./emulator @模拟器名字//对system分区可以读、写、删除操作,RAM为4G
# emulator -avd 模拟器名字 -writable-system -memory 4096//Or
# ./emulator @模拟器名字 -writable-system -memory 40963.在模拟器pull/push文件
# adb root && adb remount
# adb push test.sh /system/bin
这篇关于Mac上android emulator模拟器使用(三十一)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!