【发布时间】:2019-03-01 11:24:34
【问题描述】:
我创建了一个 Android 库并上传到 bintray.com
https://bintray.com/vsay01/maven/androidcommonutils
它也是 JCenter 的链接。
在我的应用程序的 gradle 中,我添加了:
implementation 'com.vsay01.utils:androidcommonutils:1.0.0'
在我的项目 gradle 中,我添加了:
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"]
}
谢谢
【问题讨论】:
标签: android gradle android-library bintray