在Gradle中添加库时,获取无法解析配置的所有文件“:app:debugRuntimeClasspath”错误

lnlaulya  于 2023-10-19  发布在  其他
关注(0)|答案(1)|浏览(140)

错误是与库,我甚至添加了与其他项目相同的库工作。

  • 实现'com.thoughtbot:expandableconfigurerclerview:1.4'
  • 实现“com.romandanylyk:pagedindicatorview:X.X.X”
9jyewag0

9jyewag01#

通过拥有这些仓库:

repositories {
    google()
    mavenCentral()
}

你可以得到这些库,但不是最新版本,因为它们在maven repo上不可用:

implementation 'com.thoughtbot:expandablerecyclerview:1.0'
implementation 'com.thoughtbot:expandablecheckrecyclerview:0.3'

您需要手动将PageIndicatorView添加到项目中,因为它托管在jcenter上,而jcenter在Android Studio上不再工作。
您可以手动将最新版本的expandable clerview添加到您的项目中,或者要求所有者在maven repo上更新它。

相关问题