模块编译

2021-07-12  本文已影响0人  azmohan

settings.gradle

相当于C的.h文件,头文件,include 模块。

//include ':Feature:module:DefMode'

build.gradle

相当于C的.c文件,真正编辑逻辑。

api project(':Feature:module:DefMode')

如果没有include,编辑会报如下错误:

A problem occurred evaluating project ':App:Host'.
> Project with path ':Feature:module:DefMode' could not be found in project ':App:Host'.

如果没有apk project,则不会编辑,但gradle会load代码,有load标识。

上一篇下一篇

猜你喜欢

热点阅读