Open itgoyo opened 5 years ago
现在我说一下配置的过程
1、在Terminal的home目录下输入命令 touch .bash_profile
2、接着输入命令open -e .bash_profile
之后需要在 .bash_profile文件中输入如下两行代码
export GRADLE_HOME=/Applications/Android\ Studio.app/Contents/gradle/gradle-3.2
export PATH=${PATH}:${GRADLE_HOME}/bin
注意!!!
因为有空格所以这里使用了\转义符号
\
点击图片上的显示包 然后
选中grade双击 然后选择显示简介
上图中蓝色部分就是我们要找的路径
然后就保存一下
之后调用source .bash_profile
最后就可以使用grade -v查看gradle版本了
配合gradle compileDebug --stacktrace,查看项目的错误信息
gradle compileDebug --stacktrace
现在我说一下配置的过程
1、在Terminal的home目录下输入命令 touch .bash_profile
2、接着输入命令open -e .bash_profile
之后需要在 .bash_profile文件中输入如下两行代码
export GRADLE_HOME=/Applications/Android\ Studio.app/Contents/gradle/gradle-3.2
export PATH=${PATH}:${GRADLE_HOME}/bin
注意!!!
因为有空格所以这里使用了
\
转义符号点击图片上的显示包 然后
选中grade双击 然后选择显示简介
上图中蓝色部分就是我们要找的路径
然后就保存一下
之后调用source .bash_profile
最后就可以使用grade -v查看gradle版本了
配合
gradle compileDebug --stacktrace
,查看项目的错误信息