作者热门文章
- mongodb - 在 MongoDB mapreduce 中,如何展平值对象?
- javascript - 对象传播与 Object.assign
- html - 输入类型 ="submit"Vs 按钮标签它们可以互换吗?
- sql - 使用 MongoDB 而不是 MS SQL Server 的优缺点
我在单个 android 项目中创建了两个模块,分别命名为 x 和 y。
现在我想在 Egg 类中导入 Foo 类,为此我在 Egg 类中写了下面提到的语句
Import com.example.y.Foo;
现在,Foo 无法被 android 识别。
问题,
Is it possible to import Class from a different module using just import statement?
Do I need to create library of Module y and then import created library into module x?
或者解决办法可能是别的。
最佳答案
确保以下几点:
在 settings.gradle 中,你应该有:include ':x', ':y'
.
在 x/build.gradle 中,你应该添加 y 作为依赖:
dependencies {
compile project(':y')
// other dependencies
}
关于java - 如何从android studio中的另一个模块导入类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34419962/
我是一名优秀的程序员,十分优秀!