我的项目有3个模块 app,module_1,module_2。
settings.gradle:
include ':app', ':module_1'
include ':module_2'
模块“app”是一个主要模块。在这个模块中,我有一个MyClass类 它工作正常。
但是从子模块(module_1,module_2)我无法访问这个类。
如何从子模块访问MyClass?
在主模块中,我有许多有用的实用程序类 但是子模块无法访问所有这些类。
答案 0 :(得分:1)
在相应的build.gradle中,您需要
dependencies {
compile project(':app')
}
主模块我有许多有用的实用类
您应该考虑将您的util类移动到他们自己的模块