gpt4 book ai didi

java - Android 第 3 方库集成

转载 作者:行者123 更新时间:2023-11-29 20:22:41 25 4
gpt4 key购买 nike

这有点疯狂。我已经经常使用 3rd 方库。我所要做的就是在构建 gradle 中添加编译命令,但在这种情况下它有些不同。这是我要实现的库的 github 链接:

Link to github

我尝试手动集成我需要的文件,但我遇到了很多错误。在自述文件中,开发人员说:

此库以 AAR 格式提供。源 jar 文件不会自动下载(由于当前 Gradle 和 Android Studio 的限制),所以 javadoc 注释不会显示在 IDE 上。

有人可以帮助我如何以最佳方式集成它。

最佳答案

如果你看下面,他们已经提供了一个解决方法

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'
}

关于java - Android 第 3 方库集成,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32956360/

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