无法从后缀为 HEAD-SNAPSHOT 的库中添加依赖项
Can't add dependency from library with suffix HEAD-SNAPSHOT
我正在关注一个 GitHub 项目示例,其中用户在 build.gradle
文件中添加了一个库依赖项。他们有依赖项
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3''
implementation 'org.xrpl:xrpl4j-client:HEAD-SNAPSHOT'
implementation 'org.xrpl:xrpl4j-keypairs:HEAD-SNAPSHOT'
}
我已尝试将相同的依赖项添加到我的项目中,但最后两个依赖项导致 Gradle 项目无法同步。
我在尝试导入这两个依赖项时到底做错了什么?
唯一的区别是我的项目是基于 java 而 GitHub 示例是基于 kotlin,但这应该没有什么区别吧?因为我要导入的库是 Java.
是的,和我一样,如果你在这里查看
https://github.com/nhartner/xrpl4j-android-demo/blob/main/app/build.gradle#L34
他正在使用 mavenlocal() ,所以将它们替换成
implementation 'org.xrpl:xrpl4j-client:2.1.0'
implementation 'org.xrpl:xrpl4j-keypairs:2.1.0'
并从存储库中删除 mavenlocal() 可能会解决问题。
除非他对他的本地版本做了任何修改。
阅读更多关于 maven local 的信息
https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local
我正在关注一个 GitHub 项目示例,其中用户在 build.gradle
文件中添加了一个库依赖项。他们有依赖项
dependencies {
implementation fileTree(dir: "libs", include: ["*.jar"])
implementation "org.jetbrains.kotlin:kotlin-stdlib:$kotlin_version"
implementation 'androidx.core:core-ktx:1.1.0'
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3''
implementation 'org.xrpl:xrpl4j-client:HEAD-SNAPSHOT'
implementation 'org.xrpl:xrpl4j-keypairs:HEAD-SNAPSHOT'
}
我已尝试将相同的依赖项添加到我的项目中,但最后两个依赖项导致 Gradle 项目无法同步。
我在尝试导入这两个依赖项时到底做错了什么?
唯一的区别是我的项目是基于 java 而 GitHub 示例是基于 kotlin,但这应该没有什么区别吧?因为我要导入的库是 Java.
是的,和我一样,如果你在这里查看 https://github.com/nhartner/xrpl4j-android-demo/blob/main/app/build.gradle#L34
他正在使用 mavenlocal() ,所以将它们替换成
implementation 'org.xrpl:xrpl4j-client:2.1.0'
implementation 'org.xrpl:xrpl4j-keypairs:2.1.0'
并从存储库中删除 mavenlocal() 可能会解决问题。 除非他对他的本地版本做了任何修改。
阅读更多关于 maven local 的信息 https://docs.gradle.org/current/userguide/declaring_repositories.html#sec:case-for-maven-local