alibaba / freeline

A super fast build tool for Android, an alternative to Instant Run
https://www.freelinebuild.com/
BSD 3-Clause "New" or "Revised" License
5.48k stars 623 forks source link

Project's dependencies can not detect #925

Open act262 opened 6 years ago

act262 commented 6 years ago

项目升级 gradle 4.3后,项目中 gradle 用到的 compile 依赖都改用了implementation, compile -> implementation 替换后,不能识别到被依赖项目的修改,也就无法增量更新了,查看描述文件,没有生成对应的项目关系. 可能需要适配下使用implementation,api 等配置的情况.

firsthubgit commented 6 years ago

我的可以啊,compile ‘......’ 改成 api compile project 的改成 implementation

act262 commented 6 years ago

我的 case 是指多 module 的依赖下的问题

firsthubgit commented 6 years ago

你全用api试试,别用implementation, 我这里也是多个moudle, gradle 4.3 没有一点问题,可以正常使用