首页 > 代码库 > 解决Gradle运行命令时报Could not determine the dependencies of task ':compileReleaseJava'.

解决Gradle运行命令时报Could not determine the dependencies of task ':compileReleaseJava'.

Could not determine the dependencies of task ‘:compileReleaseJava‘.

> failed to find target android-19



这个问题需要的在工程的根目录添加两个文件local.properties和settings.gradle这 两个文件

local.properties的内容是:你的SDK目录

sdk.dir=C:\\xiong\\android\\adt-bundle-windows-x86-20140321\\adt-bundle-windows-x86-20140321\\sdk

settings.gradle的内容是你需要打包的工程 如RoBoGuiceTest工程

include ‘:RoBoGuiceTest‘   这个必须添加 不添加则报上面的错


解决Gradle运行命令时报Could not determine the dependencies of task ':compileReleaseJava'.