无法解析 Android Library Bintray JCenter



我创建了一个Android库并上传到 bintray.com

https://bintray.com/vsay01/maven/androidcommonutils

它也链接到JCenter。

在我的应用程序等级中,我添加了:

implementation 'com.vsay01.utils:androidcommonutils:1.0.0'

在我的项目毕业中,我补充说:

allprojects {
repositories {
jcenter()
google()
maven {
url 'https://dl.bintray.com/vsay01/maven'
}
}
}

同步gradle时,我收到错误:

Failed to resolve: androidcommonutils

谁能指出这可能有什么问题?

[已编辑] 图书馆信息:

ext {
bintrayRepo = 'maven'
bintrayName = 'androidcommonutils'
publishedGroupId = 'com.vsay01.utils'
libraryName = 'AndroidCommonUtils'
artifact = 'androidcommonutils'
libraryDescription = 'Collections of practical Android common utils classes for developer'
siteUrl = 'https://github.com/vsay01/AndroidCommonUtils'
gitUrl = 'https://github.com/vsay01/AndroidCommonUtils.git'
libraryVersion = '1.0.0'
developerId = 'vsay01'
developerName = 'Vortana Say'
developerEmail = 'sayvortana.itc@gmail.com'
licenseName = 'The Apache Software License, Version 2.0'
licenseUrl = 'http://www.apache.org/licenses/LICENSE-2.0.txt'
allLicenses = ["Apache-2.0"]
}

谢谢

artifactIdandroidcommonutils下,您只有.pom文件,缺少工件。
您的工件位于androidutilslibrary下。

您需要移动pom或工件才能使用正确的artifactId

最新更新