赞
踩
一、adb的安装
1.创建.bash_profile文件
touch .bash_profile
2.打开.bash_profile文件
open -e .bash_profile
3.在.bash_profile文件添加SDK路径
SDK路径查看 Tools -> SDK Manager)
- export ANDROID_HOME=/Users/djl/Library/Android/sdk
-
- export PATH=${PATH}:${ANDROID_HOME}/tools
-
- export PATH=${PATH}:${ANDROID_HOME}/platform-tools
4.执行命令
source .bash_profile
5.验证是否安装成功
adb version
- djl@djldeMacBook-Pro ~ % adb version
- Android Debug Bridge version 1.0.41
- Version 30.0.4-6686687
- Installed as /Users/djl/Library/Android/sdk/platform-tools/adb
二、使用基本命令(abc.apk为事例,abc修改为你的项目包名)
1、安装apk
adb install abc.apk
2、卸载apk
adb uninstall abc.apk
3、覆盖安装
abd install -r abc.apk
4、卸载且想保留数据
abd uninstall -k abc.apk
三、解决Mac 每次都要执行source ~/.bash_profile环境变量才生效
Mac 每次都要执行source ~/.bash_profile环境变量才生效
在 ~/.bash_profile中配置环境变量, 可是每次重启终端后配置的不生效,需要重新执行source ~/.bash_profile
后来发现zsh加载的是 ~/.zshrc文件,而 .zshrc文件中并没有定义任务环境变量。
解决办法:
在~/.zshrc文件最后增加一行: source ~/.bash_profile
将 source ~/.bash_profile
添加到 ~/.zshrc
文件的末尾是一个有效的解决方法,特别是当你在使用 zsh
shell 时需要加载 bash
配置文件(.bash_profile
)。这会确保 ~/.bash_profile
中的环境变量和设置在 zsh
终端中也生效。
打开终端,执行以下步骤:
打开 ~/.zshrc
文件以进行编辑:
nano ~/.zshrc
这会在终端中打开 ~/.zshrc
文件用于编辑(你可以使用其他文本编辑器代替 nano
)。
将以下行添加到 ~/.zshrc
文件的末尾:
source .bash_profile
这一行将加载 ~/.bash_profile
中的环境变量和设置。
保存文件并退出编辑器。
nano
中,按 Ctrl
+ O
,然后按 Enter
以保存文件,然后按 Ctrl
+ X
以退出 nano
。重新启动你的终端会话或输入以下命令来重新加载 ~/.zshrc
文件:
source ~/.zshrc
现在,当你打开新的 zsh
终端会话时,~/.bash_profile
中的环境变量和设置应该会自动加载并生效。这种方法适用于希望在 zsh
中使用 bash
配置文件的情况。
mac下Android Studio 安装和使用adb-腾讯云开发者社区-腾讯云
解决Mac 每次都要执行source ~/.bash_profile环境变量才生效_mac source ~/.bash_profile_highfish920的博客-CSDN博客
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。