我试图手动整合我需要的文件但是我遇到了一些错误。 在自述文件中,开发人员说:
此库以AAR格式提供。源jar文件不会自动下载(由于当前的Gradle和Android Studio限制),因此IDE上不会显示javadoc注释。
有人可以帮助我如何以最好的方式整合这个。
答案 0 :(得分:2)
如果你看一下,他们已经提供了一个解决方法
buildscript {
repositories {
maven { url 'https://raw.github.com/xujiaao/mvn-repository/master/releases' }
}
dependencies {
classpath 'com.github.xujiaao:aarLinkSources:1.0.0'
}
}
apply plugin: 'com.android.application'
apply plugin: 'aar-link-sources'
android {
...
}
dependencies {
compile ('com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.8.0@aar'){
transitive=true
}
aarLinkSources 'com.h6ah4i.android.widget.advrecyclerview:advrecyclerview:0.8.0:sources@jar'
}