我想在我的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()存储库的顺序之类的解决方案...
答案 0 :(得分:1)
您会收到此错误,因为observablescrollview使用implementation
来引用recyclerview。这个新的build关键字使内部依赖项对您不可见。在大多数情况下,您仍然不需要它们。
在您的情况下:
如果要使用它们,则需要联系作者以api
而不是implementation
进行编译,以获取recyclerview参考。
如果他们不这样做,您将没有机会使用他们的内在依赖性。