gpt4 book ai didi

java - Android工作室: How to source android jar in a module

转载 作者:行者123 更新时间:2023-12-01 11:41:16 25 4
gpt4 key购买 nike

我刚刚从 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/

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