我有两个模块support
和mall
,它是主要入口模块app
的本地模块。
但在模块mall
中,我在support
中引用了大量资源。
我刚刚在compile
中的模块mall
的依赖项中使用build.gradle
来包含support
我在模块compile
中使用了app
来包含模块support
和mall
。
找不到。
我想升级using Gradle's new dependency configurations: implementation, api, compileOnly, and runtimeOnly。
但是当我在模块mall
中使用compileOnly来包含support
依赖项时,它对我不起作用。
答案 0 :(得分:0)
将compile
指令替换为implementation
。
1}}指令未在gradle 3.0中更改,您不应该使用它。