gpt4 book ai didi

compiler-errors - com.google.common.collect 包不存在

转载 作者:行者123 更新时间:2023-12-03 07:15:58 32 4
gpt4 key购买 nike

使用 Android studio -.5.1。

当使用以下导入语句编辑我的类时,没有显示错误,并且我可以使用编辑器的所有自动完成功能。

导入 com.google.common.collect.ArrayListMultimap;
导入 com.google.common.collect.Multimap;

但是当我实际尝试运行时,我得到以下结果。

错误:(3, 33) 错误:com.google.common.collect 包不存在

显然我的设置在某个地方是错误的,但我不知道该去哪里查看。有几十个类似的问题,但似乎没有什么足够明确的,让我能够纠正问题。

构建错误:

Information:Gradle tasks [:app:assembleDebug]
Information:11 errors
Information:12 errors
Information:0 warnings
Information:See complete output in console
Error:Execution failed for task ':app:compileDebugJava'.
> Compilation failed; see the compiler error output for details.
C:\Program Files\Android Studio\MultiLevelList\app\src\main\java\com\multilevellist\StockMatrix.java
Error:(3, 33) error: package com.google.common.collect does not exist
Error:(4, 33) error: package com.google.common.collect does not exist
Error:(7, 13) error: cannot find symbol class Multimap
Error:(7, 31) error: cannot find symbol class Multimap
Error:(8, 13) error: cannot find symbol class Multimap
Error:(8, 31) error: cannot find symbol class Multimap
Error:(9, 13) error: cannot find symbol class Multimap
Error:(7, 70) error: cannot find symbol variable ArrayListMultimap
Error:(8, 70) error: cannot find symbol variable ArrayListMultimap
Error:(25, 14) error: cannot find symbol class Multimap
Error:(26, 36) error: cannot find symbol class Multimap

构建.gradle:

apply plugin: 'android'

android {
compileSdkVersion 19
buildToolsVersion "19.0.1"

defaultConfig {
minSdkVersion 8
targetSdkVersion 19
versionCode 1
versionName "1.0"
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}

dependencies {
compile 'com.android.support:appcompat-v7:+'
compile fileTree(dir: 'libs', include: ['*.jar'])
}

最佳答案

您似乎正在尝试使用 Guava 库,但您尚未将其添加到正确的构建文件中;这可能是 Android Studio 中的一个错误,如果您向我提供有关如何到达那里的更多详细信息,我可以确保有一个针对它的错误。

添加公共(public)库的简单方法是Project Structrue> 模块> (您的模块)> 依赖项> + 按钮 > 库依赖项

Guava 将出现在公共(public)依赖项列表中:

Screen shot of dependencies, showing Guava

关于compiler-errors - com.google.common.collect 包不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22550212/

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