模块编译

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标识。

你可能感兴趣的:(模块编译)