gpt4 book ai didi

java - 为什么我在尝试使用库中的类时收到 "Cannot resolve symbol"?

转载 作者:行者123 更新时间:2023-12-02 10:27:44 27 4
gpt4 key购买 nike

简介

我有一个应用程序,目前我开始使用一些后端代码。为了防止代码重复,我想将一些代码移到库中。

这就是我所做的:

  • 对于我的库,我使用 IntelliJ IDEA 创建了一个 jar 文件(项目结构 - 文物 - 等)
  • 我将 jar 文件复制到 Android 应用程序的 lib 文件夹中
  • 我包含了依赖项(在 build.gradle 中,我将 implementation
    文件('libs/numbers-lib.jar')
    )

问题

现在,当我尝试使用其中一个类时,我得到无法解析符号“Level”(另请参阅屏幕截图)。我缺少什么?

 

编辑:我已经清理/重建了我的项目并使缓存无效。

编辑2:这是我的gradle(根据要求)

apply plugin: 'com.android.application'

android {
compileSdkVersion 27
defaultConfig {
applicationId "com.my.example"
minSdkVersion 21
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
multiDexEnabled true
targetSdkVersion 27
}
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_8
targetCompatibility JavaVersion.VERSION_1_8
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
productFlavors {
}
}

dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:27.1.1'
implementation 'com.android.support:design:27.1.1'
implementation 'junit:junit:4.12'
implementation 'com.android.support.test.espresso:espresso-core:3.0.2'
androidTestImplementation 'com.android.support.test:rules:1.0.2'
androidTestImplementation 'com.android.support.test:runner:1.0.2'
implementation 'postgresql:postgresql:9.0-801.jdbc4'
implementation files('libs/numbers-lib.jar')
}

编辑3:这是一个屏幕截图。您可以看到该库具有正确的类... enter image description here

最佳答案

将你的 lib jar 文件放在 app/libs 中,在你的项目 gradle 文件中将此行附加到依赖项中:

compile fileTree(dir: 'libs', include: ['*.jar'])

关于java - 为什么我在尝试使用库中的类时收到 "Cannot resolve symbol"?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53801580/

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