Circular dependency between the following tasks.

全部报错内容如下
Circular dependency between the following tasks._第1张图片意思说这两个module之间相互依赖了

module_login模块引用了

implementation project(path: ':fu_camera')

fu_camera模块引用了

implementation project(path: ':module_login')

此BUG为互相引用导致,只需要删掉一个,单向引用即可.

你可能感兴趣的:(Android,android)