gpt4 book ai didi

java - 如何从android studio中的另一个模块导入类?

转载 作者:IT老高 更新时间:2023-10-28 21:10:04 25 4
gpt4 key购买 nike

我在单个 android 项目中创建了两个模块,分别命名为 x 和 y。

  1. 模块 x 有一个类 Egg(包:com.example.x)
  2. 模块 y 有一个类 Foo(包:com.example.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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com