4

从 IntelliJ 内部运行 sbt 时,我在运行 scala-android 插件时遇到问题。当我从 Mac 终端为同一个项目运行 sbt 时,我没有收到任何错误:

 ~/Documents/my-android-project $ sbt
[info] Loading global plugins from /Users/rgoodwin/.sbt/plugins
[info] Loading project definition from /Users/rgoodwin/Documents/my-android-project/project
[info] Set current project to  (in build file:/Users/rgoodwin/Documents/my-android-project/)

但是当我尝试从 IntelliJ 运行 sbt 时,我得到:

[info] Loading global plugins from /Users/rgoodwin/.sbt/plugins
[info] Loading project definition from /Users/rgoodwin/Documents/my-android-project/project
[error] Android SDK not found. You might need to set ANDROID_SDK_HOME or ANDROID_SDK_ROOT or ANDROID_HOME
[error] Use 'last' for the full log.
Project loading failed: (r)etry, (q)uit, (l)ast, or (i)gnore? 

为什么 IntelliJ 内部的 sbt 不选择我设置的路径名称?

4

1 回答 1

4

我认为你可能已经ANDROID_SDK_HOME在你的.bashrc文件中设置了这个属性,所以当你运行 sbt 时设置了这个属性。

当您运行 Intellij 时,您不会从命令行启动它,因此ANDROID_SDK_HOME当您从 Intellij 运行 sbt 时未定义它。

对于 MacOS,我认为您可以设置全局环境变量(查看http://developer.apple.com/library/mac/#documentation/MacOSX/Conceptual/BPRuntimeConfig/Articles/EnvironmentVars.html)。

于 2011-11-20T17:19:46.523 回答