我目前正在将我们的一个项目从 maven 转换为 Gradle。文件夹结构如下:
gitRoot
settings.gradle
build.gradle
ProjectA
build.gradle
src/main/java
Libraries
SomeLib (git submodule)
ProjectBRoot (git submodule)
settings.gradle
build.gradle
ProjectB
build.gradle
src/main/java
Libraries
FacebookSDK/facebook
build.gradle
src
所以它看起来已经很复杂了。但这个想法是 ProjectB 是一个库项目,它应该能够单独构建和打包,这就是它有自己的 settings.gradle 的原因,据我所知,它似乎工作正常,我有它构建它找到 facebook 就好了。
ProjectB/build.gradle 包含这一行
compile project(':libraries:facebook-android-sdk:facebook')
ProjectBRoot/settings.gradle 包含这一行
include ':ProjectB', ':libraries:facebook-android-sdk:facebook'
gitRoot/settings.gradle 包含这一行
include ':ProjectA', ':Libraries:ProjectBRoot:ProjectB'
ProjectA/build.gradle 包含这一行
compile project(':Libraries:ProjectBRoot:ProjectB')
当我运行构建时出现此错误
The TaskContainer.add() method has been deprecated and is scheduled to be removed in Gradle 2.0. Please use the create() method instead.
FAILURE: Build failed with an exception.
* Where:
Build file '/gitRoot/Libraries/ProjectBRoot/ProjectB/build.gradle' line: 17
* What went wrong:
A problem occurred evaluating project ':Libraries:ProjectBRoot:ProjectB'.
> Project with path ':libraries:facebook-android-sdk:facebook' could not be found in project ':Libraries:ProjectBRoot:ProjectB'.
* Try:
Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output.
BUILD FAILED
Total time: 4.652 secs
所以我对出问题的猜测是facebook不在ProjectB的直接子文件夹中......但是在ProjectBRoot中构建时这并不重要。这可能是由于我直接引用 ProjectB 而不是通过 ProjectBRoot/gradle.build 的面孔,但我尝试过,它也没有工作。有人可以帮帮我吗,我已经查看了文档,它没有谈论具有自己的 settings.gradle 文件的多个项目,我认为这就是让我感到困惑的事情。
更新:
所以我按照 Xav 的回答,现在可以使用命令行进行构建,但是我无法使用 android studio 导入/构建。我知道问题仍然出在 facebook 项目上。我得到的错误是它无法配置 ProjectB。
Gradle: A problem occurred configuring project ':ProjectA'.
> Failed to notify project evaluation listener.
> A problem occurred configuring project ':Libraries:ProjectBRoot:ProjectB'.
> Failed to notify project evaluation listener.
> Configuration with name 'default' not found.
错误是由线路引起的
compile project(':facebook-sdk')
在 ProjectB/build.gradle 里面