在android studio中使用模块导入

时间:2014-10-12 10:44:24

标签: android gradle android-studio actionbarsherlock

我在android studio项目中使用actionbarsherlock模块时遇到问题。我成功地将它作为项目中的库,但我无法从中导入。 “import com.actionbarsherlock ...”只是代理工作。我的Settings.gradle看起来像这样:

include ':app',  ':actionbarsherlock'

actionbarsherlock模块与“App”,“。suba”和“build”位于同一文件夹中。 可能位置是问题,还是我还缺少其他东西?

1 个答案:

答案 0 :(得分:0)

settings.gradle 中的include语句只是将该项目作为Gradle构建中的子项目包含在内。然后,您需要将该项目作为依赖项包含在 build.gradle 中。

dependencies {
    compile project(':actionbarsherlock')
}