gpt4 book ai didi

android - 错误无法解决Android Studio 3.2.1中的recyclerview-v7

转载 作者:行者123 更新时间:2023-12-03 05:08:10 24 4
gpt4 key购买 nike

我想在我的build.gradle文件中添加此依赖项:

implementation 'com.android.support:design:28.0.0'

当我添加它并单击立即同步时,它给我错误:
Failed to resolve: recyclerview-v7

这是我的build.gradle文件:
// Top-level build file where you can add configuration options common to 

all sub-projects/modules.

buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.2.1'

// NOTE: Do not place your application dependencies here; they belong
// in the individual module build.gradle files
}
}

allprojects {
repositories {
google()
jcenter()
mavenCentral()
mavenLocal()
}
}

apply plugin: 'com.android.library'

android {
packagingOptions {
exclude 'META-INF/NOTICE'
}
}

android {
packagingOptions {
exclude 'META-INF/LICENSE'
}
}

android {
compileSdkVersion 28
buildToolsVersion "28.0.3"

defaultConfig {
minSdkVersion 16
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
}

dependencies {
api project(':MapdroidClient')
api project(':UiUtil')
implementation 'org.slf4j:slf4j-api:1.7.25'
implementation 'com.github.ksoichiro:android-observablescrollview:1.6.0'
implementation 'com.nineoldandroids:library:2.4.0'
implementation 'org.osmdroid:osmdroid-android:5.6.4'
implementation 'com.android.support:support-v4:28.0.0'
implementation 'com.android.support:design:28.0.0'
}

我知道在我的observablescrollview库中有recyclerview依赖项,但我不知道为什么会收到此错误。

我搜索了所有地方,没有解决方案。解决方案,例如更改google()和jcenter()存储库的顺序...

最佳答案

您会收到此错误,因为observablescrollview使用implementation来引用recyclerview。这个新的build关键字使内部依赖项对您不可见。在大多数情况下,您仍然不需要它们。

在您的情况下:
如果要使用它们,则需要联系作者以api而不是implementation进行编译,以获取recyclerview引用。

如果他们不这样做,那么您就没有机会使用他们的内部依赖性。

关于android - 错误无法解决Android Studio 3.2.1中的recyclerview-v7,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53323087/

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