赞
踩
原因是我将所有的module里面的comile全都更换成了implementation,因为编译的时候官方一直推荐使用后者替代前者,但是implementation声明的依赖只能在本module模块内使用,跨module使用就要使用api声明! 如:
comile
implementation
api
api 'com.jakewharton:butterknife:7.0.1'