无法在Android Studio 0.8.1中运行任何项目

时间:2014-07-05 12:24:01

标签: android android-studio

我无法运行任何项目。我创建了一个具有活动性的默认项目,当我尝试运行它时,我收到此错误。

Error:Execution failed for task ':app:dexDebug'.
    > com.android.ide.common.internal.LoggedErrorException: Failed to run command:
        C:\androidstudio\sdk\build-tools\android-4.4W\dx.bat --dex --num-threads=4 --output C:\projects\app\build\intermediates\dex\debug C:\projects\app\build\intermediates\classes\debug C:\projects\app\build\intermediates\dependency-cache\debug
    Error Code:
        1
    Output:
        The system cannot find the path specified.
        The system cannot find the path specified.
        The system cannot find the path specified.

它试图复制到dex / debug im guess的任何依赖,但是没有这样做。 有任何想法吗?

1 个答案:

答案 0 :(得分:0)

首先,您应该仔细检查路径C:\androidstudio\sdk\build-tools\android-4.4W\dx.bat确实存在。可能是您的SDK配置指向了一个无效的目录(尽管这不太可能,考虑到您在编译/构建过程中获得了多少)。

之后,这看起来与a similar error on OSX非常相似,因此您可以尝试使用建议的解决方案,即使用应该位于项目根目录中的Gradle包装器脚本运行gradlew.bat --stop然后再尝试编译。