作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我刚刚从 eclipse 切换到 android studio(因为 FB SDK),所以这可能是一个愚蠢的问题。在我的 android 项目中,我创建了一个名为 dbUtils 的模块(Java 库),我在其中使用 greenDAO 将数据保存在 SQLite 中。它需要导入
import android.content.Context;
找不到这个类。我无法弄清楚我需要添加什么依赖项。在 :app 模块下,这是可以识别的。
最佳答案
您应该在 build.gradle 文件中使用 android-library 插件。看看here 。这样Android Studio就会知道这个项目是一个android库(而不仅仅是一个java库)并导入所需的类。我已经使用过并且有效。这是我的 build.gradle 文件
apply plugin: 'com.android.library'
android {
compileSdkVersion 21
buildToolsVersion "21.1.2"
defaultConfig {
minSdkVersion 10
targetSdkVersion 21
versionCode 1
versionName "1.0"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
compile 'com.android.support:appcompat-v7:21.0.3'
compile project(':validationutils')
}
关于java - Android工作室: How to source android jar in a module,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29503906/
我是一名优秀的程序员,十分优秀!