一、Mac配置adb
- 在AS界面上,打开Preferences界面(快捷键: command + , 键),然后复制sdk路径
~/Library/Android/sdk/platform-tools
-
打开finder,按快捷键:shift + command + g,前往文件夹
查看adb文件是否在该目录下
-
打开终端,输入
touch .bash_profile
open -e .bash_profile
修改弹出的.bash_profile的文件,增加以下语句
export PATH=${PATH}:~/Library/Android/sdk/platform-tools
- 执行如下命令
source .bash_profile
- 输入adb回车,即可生效
二、adb install pak
在终端输入:
adb install apk路径
出现success表示安装成功
三、常见的Android开发命令
adb shell:来到手机终端中。
adb divices
adb kill-server
adb start-server
adb install XXX.apk:安装应用程序
abd uninstall (应用程序的包名)
adb -s 设备名字 XXX.apk可以选择哪个模拟器,安装程序
adb pull:(pull拉去,拿取):把手机中的文件导出去
adb push
网友评论