我正在实现一个具有两个模块的Android
应用。 app
模块使用library
模块。 library
的{{1}}文件中有一个依赖项:
build.gradle
,此库在api "se.emilsjolander:stickylistheaders:2.7.0"
模块的app
文件中使用。
xml
app's
文件包含build.gradle
模块:
library
现在的问题是,当我尝试在设备上运行时,总是看到此错误:
implementation project(path: ':Library', configuration: 'default')
这是我正在使用的库: https://github.com/emilsjolander/StickyListHeaders
答案 0 :(得分:0)
按照github上的说明添加gradle依赖项:
dependencies {
compile 'se.emilsjolander:stickylistheaders:x.x.x'
}